Add cast to please the windows compilers
This commit is contained in:
parent
d5de4d5b17
commit
15708c8056
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ void OrderedEventProcessor::processUnorderedEvents(int32 numSamples, Vst::IParam
|
||||||
++subdivNumber;
|
++subdivNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
playRemainder(std::max(0, numSamples - 1), evs);
|
playRemainder(std::max(int32(0), numSamples - 1), evs);
|
||||||
}
|
}
|
||||||
|
|
||||||
void OrderedEventProcessor::startProcessing(Vst::IEventList* evs, Vst::IParameterChanges* pcs)
|
void OrderedEventProcessor::startProcessing(Vst::IEventList* evs, Vst::IParameterChanges* pcs)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue