From 0ac1562fbdbc122b316570ec58c4b3681c2b5fda Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 26 Jun 2017 22:55:50 +0200 Subject: [PATCH] DolphinWX: Load EmuState and custom name for actual discs --- Source/Core/DolphinWX/GameListCtrl.cpp | 6 ++++++ 1 file changed, 6 insertions(+) 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); + } } }