From 23c7273481186751152f5ebb7202add524e6f45a Mon Sep 17 00:00:00 2001 From: "Dr. Chat" Date: Sun, 14 Jun 2015 12:02:52 -0500 Subject: [PATCH] Use F11 to fullscreen instead --- src/xenia/ui/main_window.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/ui/main_window.cc b/src/xenia/ui/main_window.cc index e34d18918..3fd96f616 100644 --- a/src/xenia/ui/main_window.cc +++ b/src/xenia/ui/main_window.cc @@ -64,7 +64,7 @@ bool MainWindow::Initialize() { emulator()->graphics_system()->ClearCaches(); break; } - case 0x75: { // VK_F6 + case 0x7A: { // VK_F11 ToggleFullscreen(); break; } @@ -110,7 +110,7 @@ bool MainWindow::Initialize() { std::make_unique(MenuItem::Type::kPopup, L"&Window"); window->AddChild(std::make_unique( MenuItem::Type::kString, Commands::IDC_WINDOW_FULLSCREEN, - L"Fullscreen\tF6")); + L"Fullscreen\tF11")); main_menu_.AddChild(std::move(window));