mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +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)
|
if(!SoundMngr)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (index >= 0 && index < _Songs.size())
|
if (index >= 0 && index < (sint)_Songs.size())
|
||||||
{
|
{
|
||||||
if (_State == Paused)
|
if (_State == Paused)
|
||||||
stop();
|
stop();
|
||||||
|
|
Loading…
Reference in a new issue