From 7a18d6903458852ebe18e8e7b9b64b6ce78f2f53 Mon Sep 17 00:00:00 2001 From: Justin Schuhmann Date: Thu, 26 Jan 2023 16:45:47 -0500 Subject: [PATCH] BUG: Fix issue with renderCube animation Missing a 19 for node 14, caused the render cube function to sometimes appear bugged when the starting node was 7, and the direction was right --- chromance-firmware/mapping.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chromance-firmware/mapping.h b/chromance-firmware/mapping.h index c518149..25fc4ad 100644 --- a/chromance-firmware/mapping.h +++ b/chromance-firmware/mapping.h @@ -29,7 +29,7 @@ int nodeConnections[25][6] = { {14, -1, 21, -1, 20, -1}, {16, -1, 23, -1, 22, -1}, {18, -1, -1, -1, 24, -1}, - {13, 20, 25, 29, -1, -1}, + {13, 20, 25, 29, -1, 19}, {15, 22, 27, 31, 26, 21}, {17, 24, -1, 33, 28, 23},