diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-12-23 16:29:30 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-12-23 16:29:30 -0500 |
commit | 99e66c25577e367d6c7ca75fea8b466b54c3317a (patch) | |
tree | 56183dddfd540a395086a7540060c374f9541723 /engine/overworld/decorations.asm | |
parent | 1a054661ecac2d6075961e486213b6880c0afc4e (diff) |
Rename some labels
- Remove "Buffer" suffix from some byte and word quantities
- Change "Ptr" to "Pointer"
Fixes #789
Diffstat (limited to 'engine/overworld/decorations.asm')
-rw-r--r-- | engine/overworld/decorations.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/overworld/decorations.asm b/engine/overworld/decorations.asm index 447ab236f..288e60d4e 100644 --- a/engine/overworld/decorations.asm +++ b/engine/overworld/decorations.asm @@ -16,7 +16,7 @@ _PlayerDecorationMenu: ld [wCurDecorationCategory], a .top_loop ld a, [wCurDecorationCategory] - ld [wMenuCursorBuffer], a + ld [wMenuCursorPosition], a call .FindCategoriesWithOwnedDecos call DoNthMenu ld a, [wMenuCursorY] @@ -561,7 +561,7 @@ GetDecoName: .getpokename push bc - ld [wNamedObjectIndexBuffer], a + ld [wNamedObjectIndex], a call GetPokemonName pop bc jr .copy |