diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2015-11-18 23:16:25 -0500 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2015-11-18 23:16:25 -0500 |
commit | 8a6a1a7d77fdcd1f8468f0c411795a8f039d4bd8 (patch) | |
tree | 966b287b30c8932a901525647808f7436d28b2a2 /engine/scripting.asm | |
parent | 91f749101724a17398363745d8ac95cd4feeb1c1 (diff) |
CmdQueues
Diffstat (limited to 'engine/scripting.asm')
-rw-r--r-- | engine/scripting.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm index f576fa3d4..6d87c2f1b 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -2153,7 +2153,7 @@ CopyConvertedText: ; 976c8 Script_itemtotext: ; 976d5 ; script command 0x41 ; parameters: -; item (ItemLabelByte) +; item (ItemLabelByte); use 0 to draw from ScriptVar ; memory (SingleByteParam) call GetScriptByte @@ -2923,7 +2923,7 @@ Script_writecmdqueue: ; 97a8b ld d, a ld a, [ScriptBank] ld b, a - callba Function97e31 + callba WriteCmdQueue ; no need to farcall ret ; 97a9e @@ -2936,7 +2936,7 @@ Script_delcmdqueue: ; 97a9e ld [ScriptVar], a call GetScriptByte ld b, a - callba Function97e5c + callba DelCmdQueue ; no need to farcall ret c ld a, 1 ld [ScriptVar], a |