Merge branch 'rechat' of https://github.com/adenovan/amultios-ppsspp into rechat
This commit is contained in:
commit
142e60974c
20 changed files with 664 additions and 18 deletions
|
@ -329,6 +329,7 @@ namespace MainWindow {
|
|||
TranslateMenuItem(menu, ID_OPTIONS_SHOWFPS);
|
||||
TranslateMenuItem(menu, ID_EMULATION_SOUND);
|
||||
TranslateMenuItem(menu, ID_EMULATION_CHEATS, L"\tCtrl+T");
|
||||
TranslateMenuItem(menu, ID_EMULATION_CHAT, L"\tCtrl+C");
|
||||
|
||||
// Help menu: it's translated in CreateHelpMenu.
|
||||
CreateHelpMenu(menu);
|
||||
|
@ -628,7 +629,11 @@ namespace MainWindow {
|
|||
g_Config.bEnableCheats = !g_Config.bEnableCheats;
|
||||
osm.ShowOnOff(gr->T("Cheats"), g_Config.bEnableCheats);
|
||||
break;
|
||||
|
||||
case ID_EMULATION_CHAT:
|
||||
if (GetUIState() == UISTATE_INGAME) {
|
||||
NativeMessageReceived("chat screen", "");
|
||||
}
|
||||
break;
|
||||
case ID_FILE_LOADSTATEFILE:
|
||||
if (W32Util::BrowseForFileName(true, hWnd, L"Load state", 0, L"Save States (*.ppst)\0*.ppst\0All files\0*.*\0\0", L"ppst", fn)) {
|
||||
SetCursor(LoadCursor(0, IDC_WAIT));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue