From 4fbd41852a98ccca4d3ceb2ff155a2bf0c82634d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 18 Jan 2017 00:26:56 +0100 Subject: [PATCH] Revert "Don't manipulate buffer if we are fullscreen - no text writing" This reverts commit 51976d496f692b4f933e99e5af817de6e8c9039c. --- gfx/video_driver.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/gfx/video_driver.c b/gfx/video_driver.c index 9ff334989e..0600f086a6 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -1048,10 +1048,7 @@ bool video_monitor_get_fps( (MEASURE_FRAME_TIME_SAMPLES_COUNT - 1); video_driver_frame_time_samples[write_index] = new_time - fps_time; - fps_time = new_time; - - if (video_info.fullscreen) - return false; + fps_time = new_time; if ((video_driver_frame_count % FPS_UPDATE_INTERVAL) == 0) { @@ -1091,10 +1088,6 @@ bool video_monitor_get_fps( } curr_time = fps_time = new_time; - - if (video_info.fullscreen) - return true; - strlcpy(buf, video_driver_title_buf, size); if (buf_fps) strlcpy(buf_fps, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE), size_fps);