From dbed4d4fc60aeea806c4a7d44b613d27f837cdea Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 17 Jan 2017 23:54:13 +0100 Subject: [PATCH] Add video_info->fullscreen --- gfx/video_driver.c | 1 + gfx/video_driver.h | 1 + 2 files changed, 2 insertions(+) diff --git a/gfx/video_driver.c b/gfx/video_driver.c index ef7380267c..0600f086a6 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -2192,6 +2192,7 @@ void video_driver_build_info(video_frame_info_t *video_info) video_info->post_filter_record = settings->video.post_filter_record; video_info->max_swapchain_images = settings->video.max_swapchain_images; video_info->windowed_fullscreen = settings->video.windowed_fullscreen; + video_info->fullscreen = settings->video.fullscreen; video_info->monitor_index = settings->video.monitor_index; video_info->shared_context = settings->video.shared_context; video_info->font_enable = settings->video.font_enable; diff --git a/gfx/video_driver.h b/gfx/video_driver.h index 6efb630b8b..0e70d9b8cd 100644 --- a/gfx/video_driver.h +++ b/gfx/video_driver.h @@ -98,6 +98,7 @@ typedef struct video_frame_info bool post_filter_record; unsigned max_swapchain_images; bool windowed_fullscreen; + bool fullscreen; unsigned monitor_index; bool font_enable; } video_frame_info_t;