fix system fmt, part 3

This commit is contained in:
tildearrow 2023-07-29 13:10:59 -05:00
parent 98a6080ca1
commit b83d8f3198
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ DivDataErrors DivSample::readSampleData(SafeReader& reader, short version) {
// render data
if (depth!=DIV_SAMPLE_DEPTH_8BIT && depth!=DIV_SAMPLE_DEPTH_16BIT) {
logW("sample depth is wrong! (%d)",depth);
logW("sample depth is wrong! (%d)",(int)depth);
depth=DIV_SAMPLE_DEPTH_16BIT;
}
samples=(double)samples/samplePitchesSD[pitch];