mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Chnged: Sign comparison warning
This commit is contained in:
parent
b4d5bb9af5
commit
43a3391a98
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue