13
0

fix initializer for TimeFXRequest::time_fraction (denominator not allowed to be zero)

This commit is contained in:
Paul Davis 2020-12-27 17:45:21 -07:00
parent 78233b343f
commit 683512f5a9

View File

@ -26,7 +26,7 @@ namespace ARDOUR {
struct TimeFXRequest : public InterThreadInfo {
TimeFXRequest()
: time_fraction(0,0)
: time_fraction(0,1)
, pitch_fraction(0)
, use_soundtouch(false)
, quick_seek(false)