diff options
author | Arisotura <thetotalworm@gmail.com> | 2024-04-12 17:28:51 +0200 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2024-04-12 17:28:51 +0200 |
commit | 111dc7a563dc0050939f794445574a342836bdde (patch) | |
tree | c27b0dfb0870780309f381e864ba579fc8e0bee8 /src/frontend | |
parent | 0b87dd5fa6aa70277d07a2af301db843be9e9a01 (diff) |
wifi improvements:
* implement channels
* rework power-down support, fixing bugs
* fix bug when W_BeaconInterval is zero
* fix potential missing IRQs when writing to W_IE
Diffstat (limited to 'src/frontend')
-rw-r--r-- | src/frontend/qt_sdl/Window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/qt_sdl/Window.cpp b/src/frontend/qt_sdl/Window.cpp index fde29b6..23ba784 100644 --- a/src/frontend/qt_sdl/Window.cpp +++ b/src/frontend/qt_sdl/Window.cpp @@ -805,7 +805,7 @@ void MainWindow::keyPressEvent(QKeyEvent* event) if (event->isAutoRepeat()) return; // TODO!! REMOVE ME IN RELEASE BUILDS!! - //if (event->key() == Qt::Key_F11) NDS::debug(0); + //if (event->key() == Qt::Key_F11) emuThread->NDS->debug(0); Input::KeyPress(event); } |