From b89410043a701770c26a2cfebfad8579f642bff7 Mon Sep 17 00:00:00 2001 From: grant2258 Date: Wed, 28 Nov 2018 08:22:33 +0000 Subject: [PATCH] add missing %s --- gfx/video_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/video_driver.c b/gfx/video_driver.c index 2d9d2baa74..de50911b15 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -2464,7 +2464,7 @@ void video_driver_frame(const void *data, unsigned width, (uint64_t)video_driver_frame_count); } snprintf(video_driver_window_title, sizeof(video_driver_window_title), - "%s%s%s", title, video_info.fps_text, + "%s%s%s%s", title, video_info.fps_text, video_info.fps_show ? video_info.fps_text : "", video_info.framecount_show ? frames_text : ""); }