diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-01-02 18:49:25 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-01-02 18:49:25 +0100 |
commit | d7970f749ac23786728926109be430ab732f19e6 (patch) | |
tree | c891c44bc9ff9a6aeb07a6677a96b0f1e9c9cb68 /engine/scripting.asm | |
parent | b4a49351c18dcef7f4493670058ad2833206f016 (diff) |
Consistent predef function names
Diffstat (limited to 'engine/scripting.asm')
-rw-r--r-- | engine/scripting.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm index 5965e372e..d8f35bdc6 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -1437,7 +1437,7 @@ Script_startbattle: ; script command 0x5f call BufferScreen - predef StartBattle + predef Predef_StartBattle ld a, [wBattleResult] and $3f ld [ScriptVar], a @@ -2506,7 +2506,7 @@ Script_giveegg: ld [CurPartySpecies], a call GetScriptByte ld [CurPartyLevel], a - farcall GiveEgg + farcall Predef_GiveEgg ret nc ld a, 2 ld [ScriptVar], a |