From 54be49d88ed2dbbeb21322845e14479b84e5d706 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 12 Aug 2019 11:36:49 +0200 Subject: [PATCH] More accurate framerate OSD --- retroarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index ff9930d0fb..c6e837c934 100644 --- a/retroarch.c +++ b/retroarch.c @@ -17991,7 +17991,7 @@ void video_driver_frame(const void *data, unsigned width, if (video_info.fps_show) { snprintf(video_info.fps_text, sizeof(video_info.fps_text), - "FPS: %6.1f", last_fps); + "FPS: %6.2f", last_fps); if (video_info.framecount_show) strlcat(video_info.fps_text, " || ", sizeof(video_info.fps_text)); }