Chnged: Sign comparison warning

This commit is contained in:
kervala 2016-12-11 14:20:52 +01:00
parent b4d5bb9af5
commit 43a3391a98

View file

@ -116,7 +116,7 @@ void CMusicPlayer::play (sint index)
if(!SoundMngr)
return;
if (index >= 0 && index < _Songs.size())
if (index >= 0 && index < (sint)_Songs.size())
{
if (_State == Paused)
stop();