1
0
Fork 0

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.
This commit is contained in:
Teo-CD 2024-03-22 22:38:46 +00:00
parent 5e9a466ae3
commit a65a23c5cd

View file

@ -20,8 +20,8 @@ constexpr char promoDirs[][dirStrSize] = {
}; };
constexpr char charDirs[][dirStrSize] = { constexpr char charDirs[][dirStrSize] = {
"INVALIDE", "INVALIDE",
"MICHEL" "MICHEL",
"GUILLAUME", "GUILLAUME"
}; };
bool isIdGone(int8_t ID) { bool isIdGone(int8_t ID) {