From 16eb2111020beecd108d98f94767a1f89f3466ed Mon Sep 17 00:00:00 2001 From: briaguya <70942617+briaguya-ai@users.noreply.github.com> Date: Mon, 12 Jun 2023 18:59:30 -0400 Subject: [PATCH] fullscreen with f11 not f9 (#2955) * fullscreen with f11 not f9 * update readme * use latest lus main * latest lus --------- Co-authored-by: briaguya --- README.md | 3 +-- soh/soh/SohMenuBar.cpp | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5ab6716d4..2bea2763d 100644 --- a/README.md +++ b/README.md @@ -75,9 +75,8 @@ Congratulations, you are now sailing with the Ship of Harkinian! Have fun! | F6 | Change state | | F7 | Load state | | F9 | Toggle Text-to-Speech (Windows and Mac only) | -| F10 | Fullscreen (OpenGL) | +| F11 | Fullscreen | | Tab | Toggle Alternate assets | -| Alt+Enter | Fullscreen (DirectX) | | Ctrl+R | Reset | ### Graphics Backends diff --git a/soh/soh/SohMenuBar.cpp b/soh/soh/SohMenuBar.cpp index 09b9aacd4..884f1bd1d 100644 --- a/soh/soh/SohMenuBar.cpp +++ b/soh/soh/SohMenuBar.cpp @@ -130,7 +130,7 @@ void DrawShipMenu() { } #if !defined(__SWITCH__) && !defined(__WIIU__) auto backend = LUS::Context::GetInstance()->GetWindow()->GetWindowBackend(); - if (ImGui::MenuItem("Toggle Fullscreen", "F9")) { + if (ImGui::MenuItem("Toggle Fullscreen", "F11")) { LUS::Context::GetInstance()->GetWindow()->ToggleFullscreen(); } if (ImGui::MenuItem("Quit")) {