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:
parent
5e9a466ae3
commit
a65a23c5cd
1 changed files with 2 additions and 2 deletions
|
@ -20,8 +20,8 @@ constexpr char promoDirs[][dirStrSize] = {
|
|||
};
|
||||
constexpr char charDirs[][dirStrSize] = {
|
||||
"INVALIDE",
|
||||
"MICHEL"
|
||||
"GUILLAUME",
|
||||
"MICHEL",
|
||||
"GUILLAUME"
|
||||
};
|
||||
|
||||
bool isIdGone(int8_t ID) {
|
||||
|
|
Loading…
Add table
Reference in a new issue