mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-16 16:33:55 +02:00
Return kNotImplemented with vst3_no_scale
Ever since 0bed2b7bc0 REAPER will randomly
not play back one or more audio channels for plugins that support
IPlugViewContentScaleSuport. If you return `kNotImplemented` then this
bug doesn't occur. REAPER should definitely fix this soon. With
`kResultFalse` this issue still occurs, hence this change so you can use
`vst3_no_scale` to work around this REAPER bug.
This commit is contained in:
@@ -807,7 +807,7 @@ void Vst3Bridge::run() {
|
|||||||
<< ", but the 'vst3_no_scale' option is "
|
<< ", but the 'vst3_no_scale' option is "
|
||||||
"enabled. Ignoring the request."
|
"enabled. Ignoring the request."
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
return Steinberg::kResultFalse;
|
return Steinberg::kNotImplemented;
|
||||||
} else {
|
} else {
|
||||||
return main_context
|
return main_context
|
||||||
.run_in_context<tresult>([&]() {
|
.run_in_context<tresult>([&]() {
|
||||||
|
|||||||
Reference in New Issue
Block a user