diff options
Diffstat (limited to 'engine/overworld/scripting.asm')
-rw-r--r-- | engine/overworld/scripting.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/overworld/scripting.asm b/engine/overworld/scripting.asm index 4f6c6568e..ee6e15b51 100644 --- a/engine/overworld/scripting.asm +++ b/engine/overworld/scripting.asm @@ -137,7 +137,7 @@ ScriptCommandTable: dw Script_opentext ; 47 dw Script_refreshscreen ; 48 dw Script_closetext ; 49 - dw Script_loadbytec2cf ; 4a + dw Script_writeunusedbytebuffer ; 4a dw Script_farwritetext ; 4b dw Script_writetext ; 4c dw Script_repeattext ; 4d @@ -2636,12 +2636,12 @@ Script_refreshscreen: call GetScriptByte ret -Script_loadbytec2cf: +Script_writeunusedbytebuffer: ; script command 0x4a ; parameters: byte call GetScriptByte - ld [wc2cf], a + ld [wUnusedScriptByteBuffer], a ret db closetext_command ; unused |