diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2019-04-04 21:24:21 +0200 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-04-05 07:53:23 -0500 |
commit | dd24597d529cd5d9c06aa4699526dbe13d7c9b8e (patch) | |
tree | ba90121309282222cf7e1d9758fff1764a282323 /include/battle.h | |
parent | 9e74409bb2032e25d431dda116462759e5b51fe0 (diff) |
Finish up menu specialised
Diffstat (limited to 'include/battle.h')
-rw-r--r-- | include/battle.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/include/battle.h b/include/battle.h index 13c1851cf..0274e4d9f 100644 --- a/include/battle.h +++ b/include/battle.h @@ -276,12 +276,7 @@ struct BattleCallbacksStack struct StatsArray { - u16 hp; - u16 atk; - u16 def; - u16 spd; - u16 spAtk; - u16 spDef; + u16 stats[NUM_STATS]; }; struct BattleResources @@ -290,7 +285,7 @@ struct BattleResources struct UnknownFlags *flags; struct BattleScriptsStack* battleScriptsStack; struct BattleCallbacksStack* battleCallbackStack; - struct StatsArray* statsBeforeLvlUp; + struct StatsArray* beforeLvlUp; struct AI_ThinkingStruct *ai; struct BattleHistory *battleHistory; struct BattleScriptsStack *AI_ScriptsStack; |