1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-30 09:36:43 +00:00

Fix a sign error

This commit is contained in:
scrawl 2014-06-12 23:12:48 +02:00
parent 91ed5183c8
commit be6f1fe4fe

View file

@ -226,10 +226,7 @@ namespace MWSound
// Don't play the same music track twice in a row // Don't play the same music track twice in a row
if (filelist[i] == mLastPlayedMusic) if (filelist[i] == mLastPlayedMusic)
{ {
if (i-1 == int(filelist.size())) i = (i+1) % filelist.size();
i = 0;
else
++i;
} }
streamMusicFull(filelist[i]); streamMusicFull(filelist[i]);