From 1beb1843dc3656c2bed8c7baaf9fff94be1f7245 Mon Sep 17 00:00:00 2001 From: momoko-h Date: Tue, 10 Dec 2024 12:30:00 +0100 Subject: [PATCH] Fix warning C4715 in Music Control.cpp --- Utils/Music Control.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils/Music Control.cpp b/Utils/Music Control.cpp index aa86d29da..1030cd3d7 100644 --- a/Utils/Music Control.cpp +++ b/Utils/Music Control.cpp @@ -234,7 +234,7 @@ BOOLEAN MusicPlay(NewMusicList mode, UINT8 songIndex) return FALSE; } - MusicPlay(MusicLists[mode][songIndex]); + return MusicPlay(MusicLists[mode][songIndex]); } //********************************************************************************