diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-14 16:10:37 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-04-14 16:10:37 -0400 |
commit | 851807f7ac95ae7fc627149d01f1934de98138e9 (patch) | |
tree | 7d10c975228306d84b0ff0b7875c4c637560197b /src | |
parent | b54bd2e387feb7ece4f34f50f17519e329419716 (diff) |
Fix empty trainer party initializer
Diffstat (limited to 'src')
-rw-r--r-- | src/data/trainers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/trainers.h b/src/data/trainers.h index 4ad71fd13..95e1c5412 100644 --- a/src/data/trainers.h +++ b/src/data/trainers.h @@ -9,7 +9,7 @@ const struct Trainer gTrainers[] = { .doubleBattle = FALSE, .aiFlags = 0, .partySize = 0, - .party = NULL + .party = {}, }, [TRAINER_AQUA_LEADER_1] = { .partyFlags = 0, |