diff --git a/gfx/context/drm_egl_ctx.c b/gfx/context/drm_egl_ctx.c index adcf3c653f..518e784e36 100644 --- a/gfx/context/drm_egl_ctx.c +++ b/gfx/context/drm_egl_ctx.c @@ -560,6 +560,7 @@ void gfx_ctx_destroy(void) static void gfx_ctx_input_driver(const input_driver_t **input, void **input_data) { + // FIXME: Rather than hardcode, the user should be able to set the input driver here. #ifdef HAVE_UDEV void *udev = input_udev.init(); *input = udev ? &input_udev : NULL; diff --git a/gfx/context/vc_egl_ctx.c b/gfx/context/vc_egl_ctx.c index 8872e90523..7ca936afde 100644 --- a/gfx/context/vc_egl_ctx.c +++ b/gfx/context/vc_egl_ctx.c @@ -337,6 +337,7 @@ static void gfx_ctx_destroy(void) static void gfx_ctx_input_driver(const input_driver_t **input, void **input_data) { + // FIXME: Rather than hardcode, the user should be able to set the input driver here. #ifdef HAVE_UDEV void *udev = input_udev.init(); *input = udev ? &input_udev : NULL;