mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-12 01:15:39 +00:00
Use SDL_Log() for keyboard debugging.
This commit is contained in:
parent
29c684c626
commit
1ab61635a9
1 changed files with 5 additions and 3 deletions
|
|
@ -26,7 +26,9 @@
|
|||
#include "SDL_keymap_c.h"
|
||||
#include "../video/SDL_sysvideo.h"
|
||||
|
||||
// #define DEBUG_KEYBOARD
|
||||
#if 0
|
||||
#define DEBUG_KEYBOARD
|
||||
#endif
|
||||
|
||||
// Global keyboard information
|
||||
|
||||
|
|
@ -217,7 +219,7 @@ void SDL_ResetKeyboard(void)
|
|||
int scancode;
|
||||
|
||||
#ifdef DEBUG_KEYBOARD
|
||||
printf("Resetting keyboard\n");
|
||||
SDL_Log("Resetting keyboard\n");
|
||||
#endif
|
||||
for (scancode = SDL_SCANCODE_UNKNOWN; scancode < SDL_SCANCODE_COUNT; ++scancode) {
|
||||
if (keyboard->keystate[scancode]) {
|
||||
|
|
@ -514,7 +516,7 @@ static bool SDL_SendKeyboardKeyInternal(Uint64 timestamp, Uint32 flags, SDL_Keyb
|
|||
const Uint8 source = flags & KEYBOARD_SOURCE_MASK;
|
||||
|
||||
#ifdef DEBUG_KEYBOARD
|
||||
printf("The '%s' key has been %s\n", SDL_GetScancodeName(scancode), down ? "pressed" : "released");
|
||||
SDL_Log("The '%s' key has been %s\n", SDL_GetScancodeName(scancode), down ? "pressed" : "released");
|
||||
#endif
|
||||
|
||||
// Figure out what type of event this is
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue