diff options
author | mid-kid <esteve.varela@gmail.com> | 2017-11-19 11:54:34 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2017-11-19 11:54:34 +0100 |
commit | 35a8e9da5de14aaf1ce407fdb47e33127f05ce20 (patch) | |
tree | 694575047e3abb963b884f3c42f9e6e975b03aff /battle/core.asm | |
parent | 671341a0fbcbdcbe41331a19f7863fef923c19c1 (diff) |
DetermineMobileBattleResult -> DisplayLinkBattleResult
Changed this function's name, because it confusingly only calls
DetermineLinkBattleResult when linked through mobile.
It does absolutely nothing with determining the battle result in a
regular link battle, and is only responsible for displaying the battle
result and counting stats.
Diffstat (limited to 'battle/core.asm')
-rw-r--r-- | battle/core.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/battle/core.asm b/battle/core.asm index 18c06e848..9b644ca5b 100644 --- a/battle/core.asm +++ b/battle/core.asm @@ -8640,7 +8640,7 @@ ExitBattle: ; 3f69e call ShowLinkBattleParticipantsAfterEnd ld c, 150 call DelayFrames - call DetermineMobileBattleResult + call DisplayLinkBattleResult ret .not_linked @@ -8737,7 +8737,7 @@ ShowLinkBattleParticipantsAfterEnd: ; 3f759 ret ; 3f77c -DetermineMobileBattleResult: ; 3f77c +DisplayLinkBattleResult: ; 3f77c callba CheckMobileBattleError jp c, .Mobile_InvalidBattle call IsMobileBattle2 |