mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-12 18:29:04 +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)
|
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