fix msvc compile issue

This commit is contained in:
itsmattkc
2022-02-01 14:10:40 -08:00
parent 019b3cfe29
commit f61031db2d
@@ -104,11 +104,11 @@ SpeedDurationDialog::SpeedDurationDialog(const QVector<ClipBlock *> &clips, cons
start_duration_ = -1;
}
if (clips.at(i)->reverse() != start_reverse_) {
if (clips.at(i)->reverse() != static_cast<int>(start_reverse_)) {
start_reverse_ = -1;
}
if (clips.at(i)->maintain_audio_pitch() != start_maintain_audio_pitch_) {
if (clips.at(i)->maintain_audio_pitch() != static_cast<int>(start_maintain_audio_pitch_)) {
start_maintain_audio_pitch_ = -1;
}
}