diff options
author | camthesaxman <cameronghall@cox.net> | 2017-10-26 13:47:14 -0500 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-10-26 13:47:14 -0500 |
commit | 5ea2f463d71d0bc2663e70a553557de0ccf40eef (patch) | |
tree | e702c9204f8f6e11d5b6576bc6d0311c0fe6f73f /src/pokemon_summary_screen.c | |
parent | 1bb931245b5030746b7150e3965520954d0068a7 (diff) |
also fix ambiguous MON_DATA_SPD_EV and MON_DATA_SPD2 constants
Diffstat (limited to 'src/pokemon_summary_screen.c')
-rwxr-xr-x | src/pokemon_summary_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pokemon_summary_screen.c b/src/pokemon_summary_screen.c index b3682825d..838e91d90 100755 --- a/src/pokemon_summary_screen.c +++ b/src/pokemon_summary_screen.c @@ -720,7 +720,7 @@ bool8 sub_81C00F0(struct Pokemon *a) sum->def = GetMonData(a, MON_DATA_DEF2); sum->spatk = GetMonData(a, MON_DATA_SPATK2); sum->spdef = GetMonData(a, MON_DATA_SPDEF2); - sum->speed = GetMonData(a, MON_DATA_SPD2); + sum->speed = GetMonData(a, MON_DATA_SPEED2); } break; case 3: |