From: Mark Slee Date: Thu, 24 Oct 2013 16:51:35 +0000 (-0700) Subject: New HeronLX with fix for patterns not having Deck value set X-Git-Url: https://git.piment-noir.org/?p=SugarCubes.git;a=commitdiff_plain;h=6b3d53ca7ec4376d42dbd273102dde60c876c93c New HeronLX with fix for patterns not having Deck value set --- diff --git a/_Internals.pde b/_Internals.pde index 41532f7..f809e93 100644 --- a/_Internals.pde +++ b/_Internals.pde @@ -222,9 +222,9 @@ void draw() { simulationColors = sendColors = glucose.getColors(); String displayMode = uiCrossfader.getDisplayMode(); if (displayMode == "A") { - simulationColors = lx.engine.getDeck(0).getColors(); + simulationColors = lx.engine.getDeck(GLucose.LEFT_DECK).getColors(); } else if (displayMode == "B") { - simulationColors = lx.engine.getDeck(1).getColors(); + simulationColors = lx.engine.getDeck(GLucose.RIGHT_DECK).getColors(); } if (debugMode) { debugUI.maskColors(simulationColors); diff --git a/code/HeronLX.jar b/code/HeronLX.jar index c407dc8..23d0fb8 100755 Binary files a/code/HeronLX.jar and b/code/HeronLX.jar differ