Solved a bunch of -Wall errors on modern

This commit is contained in:
Eduardo Quezada
2023-09-20 19:01:08 -03:00
parent 003d7d7e2e
commit af210da972
122 changed files with 862 additions and 992 deletions
+6 -6
View File
@@ -76,12 +76,12 @@ void * const gNullScriptPtr = NULL;
static const u8 sScriptConditionTable[6][3] =
{
// < = >
1, 0, 0, // <
0, 1, 0, // =
0, 0, 1, // >
1, 1, 0, // <=
0, 1, 1, // >=
1, 0, 1, // !=
{1, 0, 0}, // <
{0, 1, 0}, // =
{0, 0, 1}, // >
{1, 1, 0}, // <=
{0, 1, 1}, // >=
{1, 0, 1}, // !=
};
static u8 * const sScriptStringVars[] =