Add more logging

This commit is contained in:
Michael 2023-10-12 16:42:49 -04:00
parent 4bc31deac2
commit ebd46076ab

View File

@ -1443,6 +1443,8 @@ static void ProcessKeyboard(void)
// This includes keyobard, mouse, gamepads, and touch screens. // This includes keyobard, mouse, gamepads, and touch screens.
static void InitDrmInput(void) static void InitDrmInput(void)
{ {
TraceLog(LOG_INFO, "RUNNING InitDrmInput");
char path[MAX_FILEPATH_LENGTH] = { 0 }; char path[MAX_FILEPATH_LENGTH] = { 0 };
DIR *directory = NULL; DIR *directory = NULL;
struct dirent *entity = NULL; struct dirent *entity = NULL;
@ -1487,7 +1489,6 @@ static void InitDrmInput(void)
InitDrmJoystick(i, path); InitDrmJoystick(i, path);
break; break;
} }
} }
len = strlen("event-kbd"); len = strlen("event-kbd");