From 561e3b69310711be0889b9c9b305f0bcfcdf2555 Mon Sep 17 00:00:00 2001 From: Geert Bevin Date: Tue, 24 Jul 2018 07:48:03 -0400 Subject: [PATCH] Updated version to 2.2.0 build 53. Fixed upgrade bug where the cell animation mode wouldn't be preserved. --- linnstrument-firmware.ino | 2 +- ls_extstorage.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/linnstrument-firmware.ino b/linnstrument-firmware.ino index 2c7eb966..ee30e69a 100644 --- a/linnstrument-firmware.ino +++ b/linnstrument-firmware.ino @@ -57,7 +57,7 @@ For any questions about this, contact Roger Linn Design at support@rogerlinndesi /******************************************** CONSTANTS ******************************************/ const char* OSVersion = "220."; -const char* OSVersionBuild = ".052"; +const char* OSVersionBuild = ".053"; // SPI addresses #define SPI_LEDS 10 // Arduino pin for LED control over SPI diff --git a/ls_extstorage.ino b/ls_extstorage.ino index 1b22f940..1fb96193 100644 --- a/ls_extstorage.ino +++ b/ls_extstorage.ino @@ -2003,7 +2003,7 @@ void copySplitSettingsV6(void* target, void* source) { t->colorSequencerEmpty = s->colorSequencerEmpty; t->colorSequencerEvent = s->colorSequencerEvent; t->colorSequencerDisabled = s->colorSequencerDisabled; - t->playedTouchMode = playedSame; + t->playedTouchMode = s->playedTouchMode; t->lowRowMode = s->lowRowMode; t->lowRowCCXBehavior = s->lowRowCCXBehavior; t->ccForLowRow = s->ccForLowRow;