diff --git a/gfx/video_driver.c b/gfx/video_driver.c index 7ecb2ca023..22327d4429 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -2151,7 +2151,7 @@ void video_driver_frame(const void *data, unsigned width, video_driver_frame_count++; video_driver_threaded_unlock(); - video_info.monitor_fps_enable = video_monitor_get_fps(&video_info); + video_monitor_get_fps(&video_info); /* Slightly messy code, * but we really need to do processing before blocking on VSync diff --git a/gfx/video_driver.h b/gfx/video_driver.h index 93a3147830..0b745c8380 100644 --- a/gfx/video_driver.h +++ b/gfx/video_driver.h @@ -100,7 +100,6 @@ typedef struct video_frame_info bool fullscreen; unsigned monitor_index; bool font_enable; - bool monitor_fps_enable; char fps_text[128]; uint64_t frame_count;