AUDIO: Use type casting in a more uniform way

This commit is contained in:
Filippos Karapetis 2021-03-23 08:57:03 +02:00
parent 08729a889d
commit d38bb8392b

View File

@ -185,7 +185,7 @@ SynthFile *VGMColl::CreateSynthFile(VGMInstrSet *theInstrSet) {
newRgn->SetWaveLinkInfo(0, 0, 1, (uint32) realSampNum);
if (realSampNum >= finalSamps.size()) {
debug("Sample %u does not exist", unsigned(realSampNum));
debug("Sample %u does not exist", (uint32) realSampNum);
realSampNum = finalSamps.size() - 1;
}