Fix minor warning from cppcheck.

This commit is contained in:
Stephen Anthony 2018-09-20 22:00:32 -02:30
parent 1bb19a05ba
commit f8f3805dae
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ CartridgeCTY::CartridgeCTY(const BytePtr& image, uInt32 size,
// Point to the first tune
myFrequencyImage = myTuneData;
for(uInt8 i = 0; i < 3; i++)
for(uInt8 i = 0; i < 3; ++i)
myMusicCounters[i] = myMusicFrequencies[i] = 0;
}