From d0700520227414a751fcf71a1f6661bb8859b33a Mon Sep 17 00:00:00 2001 From: "Herman S." <429230+has207@users.noreply.github.com> Date: Sun, 7 Dec 2025 17:04:17 +0900 Subject: [PATCH] [Debug] Remove F7/F8 debug bindings for save/restore state F7 now conflicts with performance dialog so removing these as they're not functional anyway and are breaking the debug build --- src/xenia/app/emulator_window.cc | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/xenia/app/emulator_window.cc b/src/xenia/app/emulator_window.cc index 3f1fce35a..97b2f7afd 100644 --- a/src/xenia/app/emulator_window.cc +++ b/src/xenia/app/emulator_window.cc @@ -1091,21 +1091,6 @@ void EmulatorWindow::OnKeyDown(ui::KeyEvent& e) { SetFullscreen(false); } break; -#ifdef DEBUG - case ui::VirtualKey::kF7: { - // Save to file - // TODO: Choose path based on user input, or from options - // TODO: Spawn a new thread to do this. - emulator()->SaveToFile("test.sav"); - } break; - case ui::VirtualKey::kF8: { - // Restore from file - // TODO: Choose path from user - // TODO: Spawn a new thread to do this. - emulator()->RestoreFromFile("test.sav"); - } break; -#endif // #ifdef DEBUG - case ui::VirtualKey::kPause: { CpuBreakIntoDebugger(); } break;