mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 21:35:28 +00:00
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:
parent
1ddf7277b9
commit
b6fcfcb9c9
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user