mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Fix a few strings for translation.
Fix a minor icon issue in the game properties dialog. Use a little hack to deal with spaces in file names. Need to find a better way to deal with this. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7470 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -532,7 +532,7 @@ void CConfigMain::InitializeGUIValues()
|
||||
// video backend list
|
||||
for (std::vector<VideoBackend*>::const_iterator it = g_available_video_backends.begin(); it != g_available_video_backends.end(); ++it)
|
||||
{
|
||||
GraphicSelection->AppendString(wxString::FromUTF8((*it)->GetName().c_str()));
|
||||
GraphicSelection->AppendString(wxGetTranslation(wxString::FromUTF8((*it)->GetName().c_str())));
|
||||
if (*it == g_video_backend)
|
||||
GraphicSelection->Select(it - g_available_video_backends.begin());
|
||||
}
|
||||
|
Reference in New Issue
Block a user