diff options
author | Devine Lu Linvega <[email protected]> | 2019-04-15 06:59:03 +0900 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-04-15 06:59:03 +0900 |
commit | cb37ae1f0bda122a9b1f47dfb0699eb091aadcf6 (patch) | |
tree | 82244c8210758dd71c5feb42e78a6f16f1e21887 | |
parent | 6a88456884b2e165f0e4f74a5194090f606c5245 (diff) | |
download | Orca-cb37ae1f0bda122a9b1f47dfb0699eb091aadcf6.tar.gz Orca-cb37ae1f0bda122a9b1f47dfb0699eb091aadcf6.zip |
Time no longer breaks f
-rw-r--r-- | desktop/sources/scripts/commander.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/sources/scripts/commander.js b/desktop/sources/scripts/commander.js index 2b72011..5b902ff 100644 --- a/desktop/sources/scripts/commander.js +++ b/desktop/sources/scripts/commander.js @@ -38,7 +38,7 @@ function Commander (terminal) { this.operations = { 'play': (val) => { terminal.clock.play() }, 'stop': (val) => { terminal.clock.stop() }, - 'time': (val) => { terminal.clock.setFrame(val) }, + 'time': (val) => { terminal.clock.setFrame(parseInt(val)) }, 'goto': (val) => { terminal.cursor.goto(val) }, 'run': (val) => { terminal.run() }, 'bpm': (val) => { terminal.clock.set(parseInt(val), parseInt(val), true) }, |