Core: Always call Host_TitleChanged on boot

A title change to a title with no game ID is still a title change.
This commit is contained in:
JosJuice 2020-09-13 16:40:08 +02:00
parent 1ddf7277b9
commit b6fcfcb9c9

View File

@ -836,6 +836,9 @@ struct SetGameMetadata
// Strip the .elf/.dol file extension and directories before the name
SplitPath(executable.path, nullptr, &config->m_debugger_game_id, nullptr);
Host_TitleChanged();
return true;
}
@ -881,6 +884,8 @@ struct SetGameMetadata
{
*region = ipl.region;
config->bWii = false;
Host_TitleChanged();
return true;
}
@ -892,6 +897,8 @@ struct SetGameMetadata
*region = DiscIO::Region::NTSC_U;
config->bWii = dff_file->GetIsWii();
Host_TitleChanged();
return true;
}