From 0427f085116baf85d42ee3c340d9b34a58416f80 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 31 May 2020 23:06:03 +0200 Subject: [PATCH] Cleanup --- retroarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index 1226c974f8..ccc9b20d6a 100644 --- a/retroarch.c +++ b/retroarch.c @@ -1153,7 +1153,7 @@ static const camera_driver_t *camera_drivers[] = { #define input_config_bind_map_get(i) ((const struct input_bind_map*)&input_config_bind_map[(i)]) -#define video_has_focus() ((p_rarch->current_video_context.has_focus) ? (p_rarch->current_video_context.has_focus && p_rarch->current_video_context.has_focus(p_rarch->video_context_data)) : (p_rarch->current_video->focus) ? (p_rarch->current_video && p_rarch->current_video->focus && p_rarch->current_video->focus(p_rarch->video_driver_data)) : true) +#define video_has_focus() (p_rarch->current_video_context.has_focus ? p_rarch->current_video_context.has_focus(p_rarch->video_context_data) : p_rarch->current_video->focus ? (p_rarch->current_video && p_rarch->current_video->focus && p_rarch->current_video->focus(p_rarch->video_driver_data)) : true) #if HAVE_DYNAMIC #define runahead_run_secondary() \