From 32717d13405f9c15db62a92422cc35d1436237d0 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 21 Nov 2015 09:31:08 +0100 Subject: [PATCH] Ifdef 'SET_PER_GAME_RESOLUTION' for Gekko right now - this is still buggy code in general - might want to get rid of it and pressure the dev to come up with a sane solution that is not bug prone --- command_event.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/command_event.c b/command_event.c index 1b62bf26a9..6e5443afc9 100644 --- a/command_event.c +++ b/command_event.c @@ -1060,6 +1060,7 @@ bool event_command(enum event_command cmd) switch (cmd) { case EVENT_CMD_SET_PER_GAME_RESOLUTION: +#if defined(GEKKO) { unsigned width = 0, height = 0; @@ -1074,6 +1075,7 @@ bool event_command(enum event_command cmd) rarch_main_msg_queue_push(msg, 1, 100, true); } } +#endif break; case EVENT_CMD_LOAD_CONTENT_PERSIST: #ifdef HAVE_DYNAMIC