mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 12:10:09 +02:00
Always set FTZ instead of gating it behind a flag
After a quick round of testing it seems like REAPER doesn't always enable this on the audio thread, but Bitwig, Ardour, Carla and Renoise do. So it should be safe to just get rid of the option and to leave this enabled all the time.
This commit is contained in:
@@ -108,12 +108,6 @@ Configuration::Configuration(const fs::path& config_path,
|
||||
} else {
|
||||
invalid_options.push_back(key);
|
||||
}
|
||||
} else if (key == "force_ftz") {
|
||||
if (const auto parsed_value = value.as_boolean()) {
|
||||
force_ftz = parsed_value->get();
|
||||
} else {
|
||||
invalid_options.push_back(key);
|
||||
}
|
||||
} else if (key == "frame_rate") {
|
||||
if (const auto parsed_value = value.as_floating_point()) {
|
||||
frame_rate = parsed_value->get();
|
||||
|
||||
Reference in New Issue
Block a user