diff options
author | StapleButter <thetotalworm@gmail.com> | 2018-12-04 17:54:10 +0100 |
---|---|---|
committer | StapleButter <thetotalworm@gmail.com> | 2018-12-04 17:54:10 +0100 |
commit | 172fb4876a6fa7f704eb4256bcc2368cc7dde3c6 (patch) | |
tree | 246c5de422ee2ecb97179674b15702941fc37de2 /src/libui_sdl/main.cpp | |
parent | 808bda9171c472cfed2e891f80a4ed55c93658a4 (diff) |
begin work on general timing renovation. way shitty because it behaves as if caches were off, so everything will be slow as shit.
Diffstat (limited to 'src/libui_sdl/main.cpp')
-rw-r--r-- | src/libui_sdl/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libui_sdl/main.cpp b/src/libui_sdl/main.cpp index e9b230b..fff49df 100644 --- a/src/libui_sdl/main.cpp +++ b/src/libui_sdl/main.cpp @@ -518,8 +518,8 @@ int OnAreaKeyEvent(uiAreaHandler* handler, uiArea* area, uiAreaKeyEvent* evt) if (evt->Scancode == Config::KeyMapping[i]) KeyInputMask &= ~(1<<i); - //if (evt->Scancode == 0x57) // F11 - // NDS::debug(0); + if (evt->Scancode == 0x57) // F11 + NDS::debug(0); } return 1; |