diff options
Diffstat (limited to 'engine/overworld')
-rw-r--r-- | engine/overworld/overworld.asm | 4 | ||||
-rw-r--r-- | engine/overworld/scripting.asm | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/engine/overworld/overworld.asm b/engine/overworld/overworld.asm index 814f608f7..885dd379a 100644 --- a/engine/overworld/overworld.asm +++ b/engine/overworld/overworld.asm @@ -15,7 +15,7 @@ _ReplaceKrisSprite:: call GetUsedSprite ret -Function14146: ; mobile +_RefreshSprites: ; mobile ld hl, wSpriteFlags ld a, [hl] push af @@ -26,7 +26,7 @@ Function14146: ; mobile ld [wSpriteFlags], a ret -Function14157: ; mobile +_ClearSprites: ; mobile ld hl, wSpriteFlags ld a, [hl] push af diff --git a/engine/overworld/scripting.asm b/engine/overworld/scripting.asm index 8e35b3b45..9291192d7 100644 --- a/engine/overworld/scripting.asm +++ b/engine/overworld/scripting.asm @@ -2817,9 +2817,9 @@ Script_checksave: ret ; unused - ld a, [.byte] + ld a, [.gs_version] ld [wScriptVar], a ret -.byte - db 0 +.gs_version + db GS_VERSION |