1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-01 02:45:32 +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
if (filelist[i] == mLastPlayedMusic)
{
if (i-1 == int(filelist.size()))
i = 0;
else
++i;
i = (i+1) % filelist.size();
}
streamMusicFull(filelist[i]);