mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 15:30:35 +00:00
Merge pull request #3939 from thedax/win32MakeMsgTranslatable
Win32: Make savestate slot OSM translatable.
This commit is contained in:
commit
00c4fb43f2
@ -1152,12 +1152,12 @@ namespace MainWindow
|
||||
}
|
||||
break;
|
||||
|
||||
// TODO: Improve UI for multiple slots
|
||||
case ID_FILE_SAVESTATE_NEXT_SLOT:
|
||||
{
|
||||
I18NCategory *sy = GetI18NCategory("System");
|
||||
g_Config.iCurrentStateSlot = (g_Config.iCurrentStateSlot + 1) % SaveState::SAVESTATESLOTS;
|
||||
char msg[30];
|
||||
sprintf(msg, "Using save state slot %d.", g_Config.iCurrentStateSlot + 1);
|
||||
sprintf(msg, "%s: %d", sy->T("Savestate Slot"), g_Config.iCurrentStateSlot + 1);
|
||||
osm.Show(msg);
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user