From 99ed5eb7c5fcbc2e7d0f9423036e065a781aedbe Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 16 Oct 2011 19:59:07 +0000 Subject: [PATCH] (svn r23035) -Fix (r23034): compile failure --- src/music_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/music_gui.cpp b/src/music_gui.cpp index 17f09f47c3..5d0f2534bd 100644 --- a/src/music_gui.cpp +++ b/src/music_gui.cpp @@ -82,7 +82,7 @@ static byte * const _playlists[] = { * @param playlist The playlist to validate. * @param last The last location in the list. */ -void ValidatePlaylist(byte *playlist, const byte *last) +void ValidatePlaylist(byte *playlist, byte *last) { while (*playlist != 0 && playlist <= last) { /* Song indices are saved off-by-one so 0 is "nothing". */