summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2017-07-17 12:08:42 +0200
committerJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2017-07-17 12:08:42 +0200
commit2ed15cfc7e22bf78e47a9aee2b0cbd8459beec6c (patch)
tree8eb50bea1b1bf174e8db3b73f5128c7c03eb2acd /scripts
parente0b4767d2e2b1f1f60db72b49e72fea61040f966 (diff)
Fix a typo in recent commit
Diffstat (limited to 'scripts')
-rw-r--r--scripts/_midifilter.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/_midifilter.lua b/scripts/_midifilter.lua
index d6a1c1f567..48f61a8277 100644
--- a/scripts/_midifilter.lua
+++ b/scripts/_midifilter.lua
@@ -32,7 +32,7 @@ function dsp_run (_, _, n_samples)
if (#d == 3 and event_type == 9) then -- note on
tx_midi (t, d)
- elseif (#d == 3 and event_type = 8) then -- note off
+ elseif (#d == 3 and event_type == 8) then -- note off
tx_midi (t, d)
end
end