summaryrefslogtreecommitdiff
path: root/src/music_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-10-18 14:11:09 +0000
committerfrosch <frosch@openttd.org>2008-10-18 14:11:09 +0000
commit06eb01a7bb8ab7ed8bb8a2f26228d62a1d2dd394 (patch)
tree1bc2ceaa5c9ed6125a531c8b658161e72c9fcf0d /src/music_gui.cpp
parentcee91861628700c57c59dbe053fa63ebd4719c3e (diff)
downloadopenttd-06eb01a7bb8ab7ed8bb8a2f26228d62a1d2dd394.tar.xz
(svn r14485) -Fix (r5464): Do not check the end of destination buffer using the source pointer.
Did not cause trouble though as destination buffer has always been bigger than source buffer.
Diffstat (limited to 'src/music_gui.cpp')
-rw-r--r--src/music_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/music_gui.cpp b/src/music_gui.cpp
index 9c29e7905..90f976db8 100644
--- a/src/music_gui.cpp
+++ b/src/music_gui.cpp
@@ -118,7 +118,7 @@ static void SelectSongToPlay()
_cur_playlist[j] = _playlists[msf.playlist][i];
j++;
}
- } while (_playlists[msf.playlist][i++] != 0 && i < lengthof(_cur_playlist) - 1);
+ } while (_playlists[msf.playlist][i++] != 0 && j < lengthof(_cur_playlist) - 1);
/* Do not shuffle when on the intro-start window, as the song to play has to be the original TTD Theme*/
if (msf.shuffle && _game_mode != GM_MENU) {