(svn r7048) -Cleanup: DEBUG doesn't need a newline character, use DEBUG instead of printf and the

verb is build/built/built not build/*/build or build/*/builded.
This commit is contained in:
Darkvater
2006-11-03 01:18:40 +00:00
parent 2fb0bf317e
commit 6b44b88e9f
7 changed files with 11 additions and 11 deletions

View File

@@ -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;
}