From a65a23c5cdc6c4e220d6e59da9c5083eac9855f3 Mon Sep 17 00:00:00 2001 From: Teo-CD 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) {