Fix a clang-tidy problem
This commit is contained in:
parent
62506b50f3
commit
34f9754a99
1 changed files with 1 additions and 1 deletions
|
|
@ -313,7 +313,7 @@ void SfizzVstProcessor::updateTimeInfo(const Vst::ProcessContext& context)
|
||||||
sfz::Sfizz& synth = *_synth;
|
sfz::Sfizz& synth = *_synth;
|
||||||
|
|
||||||
if (context.state & context.kTempoValid)
|
if (context.state & context.kTempoValid)
|
||||||
synth.bpmTempo(0, context.tempo);
|
synth.bpmTempo(0, static_cast<float>(context.tempo));
|
||||||
|
|
||||||
if (context.state & context.kTimeSigValid) {
|
if (context.state & context.kTimeSigValid) {
|
||||||
_timeSigNumerator = context.timeSigNumerator;
|
_timeSigNumerator = context.timeSigNumerator;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue