diff --git a/Source/Core/DolphinWX/GameListCtrl.cpp b/Source/Core/DolphinWX/GameListCtrl.cpp index 9a542de2fe..83fd250d62 100644 --- a/Source/Core/DolphinWX/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/GameListCtrl.cpp @@ -423,7 +423,13 @@ void GameListCtrl::RefreshList() { auto file = std::make_shared(drive); if (file->IsValid()) + { + if (file->EmuStateChanged()) + file->EmuStateCommit(); + if (file->CustomNameChanged(m_title_database)) + file->CustomNameCommit(); m_shown_files.push_back(file); + } } }