summaryrefslogtreecommitdiff
path: root/video/sdl_v.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/sdl_v.c')
-rw-r--r--video/sdl_v.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/sdl_v.c b/video/sdl_v.c
index 5ffd33dbf..d9ddc6219 100644
--- a/video/sdl_v.c
+++ b/video/sdl_v.c
@@ -296,8 +296,8 @@ static uint32 ConvertSdlKeyIntoMy(SDL_keysym *sym)
if (sym->mod & KMOD_ALT) key |= WKC_ALT;
// these two lines really help porting hotkey combos. Uncomment to use -- Bjarni
#if 0
- printf("scancode character pressed %d\n", sym->scancode);
- printf("unicode character pressed %d\n", sym->unicode);
+ DEBUG(driver, 0) ("scancode character pressed %d", sym->scancode);
+ DEBUG(driver, 0) ("unicode character pressed %d", sym->unicode);
#endif
return (key << 16) + sym->unicode;
}