diff options
author | Michael Ball | 2019-11-28 12:17:42 -0800 |
---|---|---|
committer | Bastien Bouclet | 2019-11-30 18:53:23 +0100 |
commit | 6f678e6e84ae1a21c825fde582a956ac189cec3f (patch) | |
tree | ca43f9252677c100b74a806a135e3466e9412d6f /backends/platform/3ds/osystem-events.cpp | |
parent | 2048c9cc7810948f6dc913dd44e606efcab9bb2b (diff) | |
download | scummvm-rg350-6f678e6e84ae1a21c825fde582a956ac189cec3f.tar.gz scummvm-rg350-6f678e6e84ae1a21c825fde582a956ac189cec3f.tar.bz2 scummvm-rg350-6f678e6e84ae1a21c825fde582a956ac189cec3f.zip |
3DS: Prevent magnify effect from updating while the GUI is active
Diffstat (limited to 'backends/platform/3ds/osystem-events.cpp')
-rw-r--r-- | backends/platform/3ds/osystem-events.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/backends/platform/3ds/osystem-events.cpp b/backends/platform/3ds/osystem-events.cpp index 1ee550ed66..6af7c4dd52 100644 --- a/backends/platform/3ds/osystem-events.cpp +++ b/backends/platform/3ds/osystem-events.cpp @@ -144,7 +144,6 @@ static void eventThreadFunc(void *arg) { // Button events if (keysPressed & KEY_L) { if (g_gui.isActive()) { - // TODO: Prevent the magnify effect from updating while the GUI is active osys->displayMessageOnOSD(_("Magnify Mode cannot be activated in menus.")); } else if (config.screen != kScreenBoth && osys->getMagnifyMode() == MODE_MAGOFF) { // TODO: Automatically enable both screens while magnify mode is on |