diff options
author | yenatch <yenatch@gmail.com> | 2014-06-14 00:34:57 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-06-14 00:41:34 -0700 |
commit | b83f23725452fed945f8047711f94ba07952f870 (patch) | |
tree | 58161e26b2500838fb914fef5f4b7d1b0db026ae /main.asm | |
parent | e23f34125879e680e1a6ee263cb3dbb579cc5135 (diff) |
Rename _GetBattleVar -> GetBattleVarAddr.
Functions prefixed with _ imply they're private.
The real purpose of this function is to use an address,
rather than saving a few cycles on push/pop.
Diffstat (limited to 'main.asm')
-rw-r--r-- | main.asm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -107651,12 +107651,12 @@ UsedMoveText: ; 105db9 .start ld a, BATTLE_VARS_LAST_MOVE - call _GetBattleVar + call GetBattleVarAddr ld d, h ld e, l ld a, BATTLE_VARS_LAST_COUNTER_MOVE - call _GetBattleVar + call GetBattleVarAddr ld a, BATTLE_VARS_MOVE_ANIM call GetBattleVar |