From 87f51f0f6e41a47426136256cc7c13367d9a5e74 Mon Sep 17 00:00:00 2001 From: momoko-h Date: Tue, 10 Dec 2024 16:15:21 +0100 Subject: [PATCH] Fix warning C4715 in Music Control.cpp (#351) --- 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 aa86d29d..1030cd3d 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]); } //********************************************************************************