mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
Log game version
This commit is contained in:
parent
57f2189b1a
commit
6979b96225
@ -1006,6 +1006,9 @@ void Emulator::Load(const std::string& title_id, bool add_only, bool force_globa
|
||||
m_title_id = psf::get_string(_psf, "TITLE_ID");
|
||||
m_cat = psf::get_string(_psf, "CATEGORY");
|
||||
|
||||
std::string version_app = psf::get_string(_psf, "APP_VER", "Unknown");
|
||||
std::string version_disc = psf::get_string(_psf, "VERSION", "Unknown");
|
||||
|
||||
if (!_psf.empty() && m_cat.empty())
|
||||
{
|
||||
LOG_FATAL(LOADER, "Corrupted PARAM.SFO found! Assuming category GD. Try reinstalling the game.");
|
||||
@ -1015,6 +1018,7 @@ void Emulator::Load(const std::string& title_id, bool add_only, bool force_globa
|
||||
LOG_NOTICE(LOADER, "Title: %s", GetTitle());
|
||||
LOG_NOTICE(LOADER, "Serial: %s", GetTitleID());
|
||||
LOG_NOTICE(LOADER, "Category: %s", GetCat());
|
||||
LOG_NOTICE(LOADER, "Version: %s / %s", version_app, version_disc);
|
||||
|
||||
if (!force_global_config)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user