From 1012416b672fdf53c2f8d31dc1aae9f8e869d939 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 28 Sep 2018 21:43:23 +0200 Subject: [PATCH] Change size of video_driver_window_title to 512 --- 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 2ad6904bb8..5a9b8c8e07 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -164,7 +164,7 @@ static unsigned video_driver_height = 0; static enum rarch_display_type video_driver_display_type = RARCH_DISPLAY_NONE; static char video_driver_title_buf[64] = {0}; -static char video_driver_window_title[128] = {0}; +static char video_driver_window_title[512] = {0}; static bool video_driver_window_title_update = true; static retro_time_t video_driver_frame_time_samples[MEASURE_FRAME_TIME_SAMPLES_COUNT];