From d20b8b1b033256dbe508b11c3e77ab2110531db0 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sat, 7 Dec 2013 14:18:01 +0100 Subject: [PATCH] Remove debug use of udev. --- gfx/context/glx_ctx.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gfx/context/glx_ctx.c b/gfx/context/glx_ctx.c index b79bb842b8..533dbaffc8 100644 --- a/gfx/context/glx_ctx.c +++ b/gfx/context/glx_ctx.c @@ -541,14 +541,9 @@ static void gfx_ctx_destroy(void) static void gfx_ctx_input_driver(const input_driver_t **input, void **input_data) { - void *xinput = input_udev.init(); - *input = xinput ? &input_udev : NULL; - *input_data = xinput; -#if 0 void *xinput = input_x.init(); *input = xinput ? &input_x : NULL; *input_data = xinput; -#endif } static bool gfx_ctx_has_focus(void)