Skip to content
Snippets Groups Projects
Commit 41f67497 authored by moon2's avatar moon2 :speech_balloon:
Browse files

tiny sampler: throw out that one undocumented mode

parent 31af0c84
Branches
Tags
1 merge request!635tiny sampler: throw out that one undocumented mode
Pipeline #12599 passed
......@@ -289,9 +289,13 @@ class TinySampler(Application):
return
if self.input.buttons.app.left.pressed:
self.mode -= 1
if self.mode == 3:
self.mode -= 1
release_all = True
elif self.input.buttons.app.right.pressed:
self.mode += 1
if self.mode == 3:
self.mode += 1
release_all = True
else:
release_all = False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment