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:
trotFunky 2024-03-18 22:46:38 +00:00
parent 77f59a1fb8
commit f8d160c79c

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) {