Use F11 to fullscreen instead

This commit is contained in:
Dr. Chat 2015-06-14 12:02:52 -05:00
parent cec2e2b397
commit 23c7273481
1 changed files with 2 additions and 2 deletions

View File

@ -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<PlatformMenu>(MenuItem::Type::kPopup, L"&Window");
window->AddChild(std::make_unique<PlatformMenu>(
MenuItem::Type::kString, Commands::IDC_WINDOW_FULLSCREEN,
L"Fullscreen\tF6"));
L"Fullscreen\tF11"));
main_menu_.AddChild(std::move(window));