Merge pull request #370 from DizzyEggg/patch-9

Update MoveFlagExists
This commit is contained in:
AnonymousRandomPerson
2025-03-18 19:25:52 -04:00
committed by GitHub

View File

@@ -91,7 +91,7 @@ void ReadPoke2MovesBits(DataSerializer *, struct Moves *);
static inline bool8 MoveFlagExists(Move *move)
{
return (move->moveFlags & MOVE_FLAG_EXISTS);
return (move->moveFlags & MOVE_FLAG_EXISTS) != 0;
}
static inline bool8 MoveFlagSet(Move *move)