diff --git a/gfx/video_driver.c b/gfx/video_driver.c index 378bdf493f..6cc2821ea4 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -3291,7 +3291,7 @@ bool video_context_driver_show_mouse(bool *bool_data) return true; } -static bool video_context_driver_get_flags(gfx_ctx_flags_t *flags) +bool video_context_driver_get_flags(gfx_ctx_flags_t *flags) { if (!current_video_context.get_flags) return false; diff --git a/gfx/video_driver.h b/gfx/video_driver.h index 60d52dee69..a005e3dc87 100644 --- a/gfx/video_driver.h +++ b/gfx/video_driver.h @@ -1189,6 +1189,8 @@ bool video_driver_started_fullscreen(void); bool video_driver_is_threaded(void); +bool video_context_driver_get_flags(gfx_ctx_flags_t *flags); + bool video_driver_get_all_flags(gfx_ctx_flags_t *flags, enum display_flags flag);