From b76d20d7d29eb30a584ed3e7277939f0a980b512 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 12 Oct 2023 17:28:28 -0400 Subject: [PATCH] Add missing slash --- 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 5de234cf1..bd2201c32 100644 --- a/src/rcore_drm.c +++ b/src/rcore_drm.c @@ -1477,7 +1477,7 @@ static void InitDrmInput(void) { while ((entity = readdir(directory)) != NULL) { - sprintf(path, "%s%s", DEFAULT_EVDEV_PATH, entity->d_name); + sprintf(path, "%s/%s", DEFAULT_EVDEV_PATH, entity->d_name); // Devices are in the format: // /dev/input/by-id/usb-Name_of_Device-[event-joystick|event-kbd|event-mouse]