1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Fix warning

This commit is contained in:
Mathieu Schroeter 2017-02-28 21:54:42 +01:00
parent 016581ff18
commit 8d19d8ce79

View File

@ -158,7 +158,7 @@ out:
void CSound::FlushAll ()
{
for (int ch = 0; ch < sizeof (m_lpSDL); ++ch)
for (size_t ch = 0; ch < sizeof (m_lpSDL); ++ch)
Flush (ch);
}