1
0
Fork 0

IDs: Fix swapped IDs

Both the character figurines and the Randonnée and Resto figurines
were swapped compared to the Unity program.

Swap them to be in the correct order.
This commit is contained in:
Teo-CD 2024-03-18 22:46:38 +00:00
parent 4dcf4e83bb
commit 5e9a466ae3

View file

@ -7,8 +7,8 @@
/* IDs are greater than one, offset the array to make it easier to use. */
constexpr char promoDirs[][dirStrSize] = {
"INVALIDE",
"RANDONNEE",
"RESTO",
"RANDONNEE",
"AUTOBUS",
"MAYO",
"MADO",
@ -20,8 +20,8 @@ constexpr char promoDirs[][dirStrSize] = {
};
constexpr char charDirs[][dirStrSize] = {
"INVALIDE",
"GUILLAUME",
"MICHEL"
"GUILLAUME",
};
bool isIdGone(int8_t ID) {