From 8d513f81990ca0825350e61dd87a1523eab3e269 Mon Sep 17 00:00:00 2001 From: sonninnos Date: Mon, 23 Aug 2021 18:32:10 +0300 Subject: [PATCH] Print video-prefix in refresh rate set to log only --- retroarch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/retroarch.c b/retroarch.c index 98dd4056c8..72e3b23be7 100644 --- a/retroarch.c +++ b/retroarch.c @@ -30586,11 +30586,11 @@ void video_monitor_set_refresh_rate(float hz) settings_t *settings = p_rarch->configuration_settings; snprintf(msg, sizeof(msg), - "[Video]: Setting refresh rate to: %.3f Hz.", hz); + "Setting refresh rate to: %.3f Hz.", hz); if (settings->bools.notification_show_refresh_rate) runloop_msg_queue_push(msg, 1, 180, false, NULL, MESSAGE_QUEUE_ICON_DEFAULT, MESSAGE_QUEUE_CATEGORY_INFO); - RARCH_LOG("%s\n", msg); + RARCH_LOG("[Video]: %s\n", msg); configuration_set_float(settings, settings->floats.video_refresh_rate,