diff --git a/scripts/ReaLlm_init_example.lua b/scripts/ReaLlm_init_example.lua index b73bf88..642b954 100644 --- a/scripts/ReaLlm_init_example.lua +++ b/scripts/ReaLlm_init_example.lua @@ -4,16 +4,16 @@ if reallmID == 0 then return end state = reaper.GetToggleCommandState(reallmID) -- set PDC latency limit 0.9 times current audio device buffer size -reaper.Llm_Set("D_PDCLIMIT", "0.9") +reaper.Llm_Set("PDCLIMIT", "0.9") -- also handle monitoring fx -reaper.Llm_Set("B_MONITORINGFX", "true") +reaper.Llm_Set("MONITORINGFX", "true") --[[ Changes 'VST3: Pro-C 2 (FabFilter)' plugin parameter index 8 (Lookahead) on/off when instances are found in monitored signalchain. ]] -- -reaper.Llm_Set("C_PARAMCHANGE", "VST3: Pro-C 2 (FabFilter),8,0,1") +reaper.Llm_Set("PARAMCHANGE", "VST3: Pro-C 2 (FabFilter),8,0,1") -- enable / disable ReaLlm reaper.Main_OnCommand(reallmID, 0)