From ae98ea72103ea8e4b303aebc7ea0c987ab2e1bf9 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 6 Jun 2017 03:49:21 +0200 Subject: [PATCH] Remove unused function --- gfx/video_driver.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/gfx/video_driver.c b/gfx/video_driver.c index 2bb8e0c289..05eb4b8161 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -549,7 +549,7 @@ static void video_context_driver_reset(void) current_video_context.swap_buffers = swap_buffers_null; if (current_video_context.has_focus) - video_driver_cb_has_focus = video_context_has_focus; + video_driver_cb_has_focus = video_context_has_focus; } bool video_context_driver_set(const gfx_ctx_driver_t *data) @@ -3020,11 +3020,6 @@ bool video_context_driver_set_flags(gfx_ctx_flags_t *flags) return true; } -bool video_driver_is_focused(void) -{ - return video_driver_cb_has_focus(); -} - bool video_driver_has_windowed(void) { #if defined(RARCH_CONSOLE) || defined(RARCH_MOBILE)