From 196a64d242d64161392f72d77ebb1b022fbf7b5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sun, 24 Apr 2016 15:32:51 -0700 Subject: [PATCH] Cleanup. --- examples/common/entry/entry_sdl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/common/entry/entry_sdl.cpp b/examples/common/entry/entry_sdl.cpp index cc7d873fa..0e4f49424 100644 --- a/examples/common/entry/entry_sdl.cpp +++ b/examples/common/entry/entry_sdl.cpp @@ -558,14 +558,14 @@ namespace entry uint8_t modifiers = translateKeyModifiers(kev.keysym.mod); Key::Enum key = translateKey(kev.keysym.scancode); - #if 0 +#if 0 DBG("SDL scancode %d, key %d, name %s, key name %s" , kev.keysym.scancode , key , SDL_GetScancodeName(kev.keysym.scancode) , SDL_GetKeyName(kev.keysym.scancode) ); - #endif // 0 +#endif // 0 /// If you only press (e.g.) 'shift' and nothing else, then key == 'shift', modifier == 0. /// Further along, pressing 'shift' + 'ctrl' would be: key == 'shift', modifier == 'ctrl.