From: <sv...@op...> - 2024-12-11 18:30:14
|
Author: sagamusix Date: Wed Dec 11 19:30:04 2024 New Revision: 22514 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22514 Log: [Ref] Silence compiler warning. Modified: trunk/OpenMPT/soundlib/XMTools.cpp Modified: trunk/OpenMPT/soundlib/XMTools.cpp ============================================================================== --- trunk/OpenMPT/soundlib/XMTools.cpp Wed Dec 11 18:58:26 2024 (r22513) +++ trunk/OpenMPT/soundlib/XMTools.cpp Wed Dec 11 19:30:04 2024 (r22514) @@ -110,7 +110,7 @@ continue; // We haven't considered this sample yet. addedToList[smp - 1] = true; - if(sampleList.samples.size() < (compatibilityExport ? 16 : 32)) + if(sampleList.samples.size() < (compatibilityExport ? 16u : 32u)) sampleList.samples.push_back(smp); else sampleList.tooManySamples = true; |