Solved a bunch of -Wall errors on modern
This commit is contained in:
+6
-6
@@ -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[] =
|
||||
|
||||
Reference in New Issue
Block a user