From d4219ed94c085a01531cbe8be993056a21534fb4 Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 8 Sep 2021 11:36:06 +0100 Subject: [PATCH] fix [rainbow] in msg compiler (#416) It's unused but I saw the typo --- tools/build/msg/parse_compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build/msg/parse_compile.py b/tools/build/msg/parse_compile.py index 98b58f2970..46aa673ce4 100755 --- a/tools/build/msg/parse_compile.py +++ b/tools/build/msg/parse_compile.py @@ -853,7 +853,7 @@ if __name__ == "__main__": message.bytes += [0xFF, 0x27, 0x05] elif command == "rainbow": fx_stack.append(0x06) - message.bytes += [0xFF, 0x27, 0x06] + message.bytes += [0xFF, 0x26, 0x06] elif command == "/rainbow": fx_stack.pop() message.bytes += [0xFF, 0x27, 0x06]