ConfigManager: Remove m_strName

m_strName has limited usefulness, because GetInternalName()
can be inaccurate or even completely wrong. It was almost
completely unused anyway.
This commit is contained in:
JosJuice
2017-03-08 21:01:57 +01:00
parent 489d90b6f3
commit a1f874a66b
5 changed files with 2 additions and 15 deletions

View File

@ -190,7 +190,7 @@ void wxCheatsWindow::UpdateGUI()
// write the ISO name in the title
if (Core::IsRunning())
SetTitle(title + StrToWxStr(": " + m_game_id + " - " + parameters.m_strName));
SetTitle(title + StrToWxStr(": " + m_game_id));
else
SetTitle(title);
}