From 99ee13bbdff6476ec3bd87ef146725b34248fa31 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 12 Oct 2023 17:39:58 -0400 Subject: [PATCH] Fix missing paren --- src/rcore_drm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore_drm.c b/src/rcore_drm.c index e214420e5..d2f4fe366 100644 --- a/src/rcore_drm.c +++ b/src/rcore_drm.c @@ -1524,7 +1524,7 @@ static void InitDrmJoystick(int index, const char *path) for (int axis = 0; axis < ABS_MAX; axis++) { if (MI_IS_BIT_SET(abs_bits, axis)) { - TraceLog(LOG_INFO, TextFormat("Gamepad %d has axis %d", index, axis); + TraceLog(LOG_INFO, TextFormat("Gamepad %d has axis %d", index, axis)); CORE.Input.Gamepad.axisCount[index]++; } }