mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Chnged: Sign comparison warning
--HG-- branch : develop
This commit is contained in:
parent
c240c45514
commit
e7d1710747
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