diff --git a/src/emulator.cpp b/src/emulator.cpp index de523bbb8..26bfe4bd0 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -227,6 +227,9 @@ void Emulator::Run(std::filesystem::path file, std::vector args, std::quick_exit(0); } + ASSERT(id == "CUSA00207" || id == "CUSA00208" || id == "CUSA00299" || id == "CUSA00900" || + id == "CUSA01363" || id == "CUSA03023" || id == "CUSA03173"); + LOG_INFO(Loader, "Starting shadBloodborne emulator v{} ", Common::g_version); LOG_INFO(Loader, "Revision {}", Common::g_scm_rev); LOG_INFO(Loader, "Branch {}", Common::g_scm_branch); @@ -341,16 +344,17 @@ void Emulator::Run(std::filesystem::path file, std::vector args, if (remote_host == "shadps4-emu" || remote_url.length() == 0) { window_title = fmt::format("shadBloodborne v{} | {}", Common::g_version, game_title); } else { - window_title = - fmt::format("shadBloodborne {}/v{} | {}", remote_host, Common::g_version, game_title); + window_title = fmt::format("shadBloodborne {}/v{} | {}", remote_host, Common::g_version, + game_title); } } else { if (remote_host == "shadps4-emu" || remote_url.length() == 0) { window_title = fmt::format("shadBloodborne v{} {} {} | {}", Common::g_version, Common::g_scm_branch, Common::g_scm_desc, game_title); } else { - window_title = fmt::format("shadBloodborne v{} {}/{} {} | {}", Common::g_version, remote_host, - Common::g_scm_branch, Common::g_scm_desc, game_title); + window_title = + fmt::format("shadBloodborne v{} {}/{} {} | {}", Common::g_version, remote_host, + Common::g_scm_branch, Common::g_scm_desc, game_title); } } window = std::make_unique(EmulatorSettings.GetWindowWidth(),