From 186b24266a6c029a87219eff981026e8916c7584 Mon Sep 17 00:00:00 2001 From: SunM <43372170+Ssroid@users.noreply.github.com> Date: Sun, 31 Dec 2023 20:20:55 +0900 Subject: [PATCH] Fix audio_statistics_t audio_stats to {0} --- 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 61bb6b97c33a..186c6bba2377 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -4308,7 +4308,7 @@ void video_frame_rest(video_driver_state_t *video_st, static int frame_time_near_count = 0; static int frame_time_try_count = 0; double video_stddev = 0; - audio_statistics_t audio_stats ={0}; + audio_statistics_t audio_stats = {0}; /* Must require video and audio deviation standards */ video_monitor_fps_statistics(NULL, &video_stddev, NULL);