summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-11-02 23:47:13 +0100
committerUwe Klotz <uklotz@mixxx.org>2020-11-02 23:47:13 +0100
commitfb0c5763bcd770e5c4b29f809eea5e717a4db8fd (patch)
tree6cd3c9aa184a7f4a4ec87ae83a17a6dd1994b30e /res
parentad3674f81c4a546e852b3b1c4bb759acd140d234 (diff)
Fix codespell issues
Diffstat (limited to 'res')
-rw-r--r--res/controllers/Pioneer-DDJ-200-scripts.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/controllers/Pioneer-DDJ-200-scripts.js b/res/controllers/Pioneer-DDJ-200-scripts.js
index c639c19fa1..e6c0f68ff6 100644
--- a/res/controllers/Pioneer-DDJ-200-scripts.js
+++ b/res/controllers/Pioneer-DDJ-200-scripts.js
@@ -40,7 +40,7 @@ DDJ200.shutdown = function() {
DDJ200.LEDsOff();
};
-DDJ200.LEDsOff = function() { // trun off LED buttons:
+DDJ200.LEDsOff = function() { // turn off LED buttons:
for (var i = 0; i <= 1; i++) {
midi.sendShortMsg(0x96 + i, 0x63, 0x00); // set headphone master
@@ -275,7 +275,7 @@ DDJ200.cueGotoandstop = function(channel, control, value, status, group) {
var vDeckNo = DDJ200.vDeckNo[script.deckFromGroup(group)];
var vgroup = "[Channel" + vDeckNo + "]";
engine.setValue(vgroup, "cue_gotoandstop", true);
- //engine.setValue(vgroup, "start_stop", true); // go to start if prefered
+ //engine.setValue(vgroup, "start_stop", true); // go to start if preferred
midi.sendShortMsg(status, 0x0B, 0x7F * engine.getValue(vgroup, "play"));
}
};