From d3050d7d570f414d3c0e18f8c2d41b6b01709653 Mon Sep 17 00:00:00 2001 From: trotFunky Date: Fri, 22 Mar 2024 22:38:46 +0000 Subject: [PATCH] ID: Fix comma for characters While hastily fixing the swapped IDs, I forgot to move the trailing coma in the character case. This led to having a singular valid character ID and checking for a directory "MICHELGUILLAUME" to play animations. Properly move the coma to the second element. --- src/IDs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IDs.cpp b/src/IDs.cpp index 209d76c..1b919b0 100644 --- a/src/IDs.cpp +++ b/src/IDs.cpp @@ -20,8 +20,8 @@ constexpr char promoDirs[][dirStrSize] = { }; constexpr char charDirs[][dirStrSize] = { "INVALIDE", - "MICHEL" - "GUILLAUME", + "MICHEL", + "GUILLAUME" }; bool isIdGone(int8_t ID) {