mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-07 16:49:27 +00:00
DolphinWX: Load EmuState and custom name for actual discs
This commit is contained in:
parent
d5bf6f1bbc
commit
0ac1562fbd
1 changed files with 6 additions and 0 deletions
|
@ -423,7 +423,13 @@ void GameListCtrl::RefreshList()
|
||||||
{
|
{
|
||||||
auto file = std::make_shared<GameListItem>(drive);
|
auto file = std::make_shared<GameListItem>(drive);
|
||||||
if (file->IsValid())
|
if (file->IsValid())
|
||||||
|
{
|
||||||
|
if (file->EmuStateChanged())
|
||||||
|
file->EmuStateCommit();
|
||||||
|
if (file->CustomNameChanged(m_title_database))
|
||||||
|
file->CustomNameCommit();
|
||||||
m_shown_files.push_back(file);
|
m_shown_files.push_back(file);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue