diff options
| author | Vortyne <104168801+Vortyne@users.noreply.github.com> | 2023-11-20 17:23:22 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-20 17:23:22 -0500 |
| commit | 7a7a6d689c1fc2cd42ae925e4c7e19434a4e0267 (patch) | |
| tree | 312ef637d2150eb2ae8ce88ef55aaf68b98fd4ba /ram | |
| parent | Name 2 unnamed labels I missed in SeafoamIslandsB4F and PokemonMansion3F (#437) (diff) | |
| download | pokeyellow-7a7a6d689c1fc2cd42ae925e4c7e19434a4e0267.tar.gz pokeyellow-7a7a6d689c1fc2cd42ae925e4c7e19434a4e0267.tar.xz pokeyellow-7a7a6d689c1fc2cd42ae925e4c7e19434a4e0267.zip | |
Identify the unnamed HRAM variables and one WRAM label (#438)
Diffstat (limited to 'ram')
| -rw-r--r-- | ram/hram.asm | 13 | ||||
| -rw-r--r-- | ram/wram.asm | 2 |
2 files changed, 6 insertions, 9 deletions
diff --git a/ram/hram.asm b/ram/hram.asm index 0607a484..72e9e13a 100644 --- a/ram/hram.asm +++ b/ram/hram.asm @@ -85,10 +85,10 @@ hSpriteScreenX:: db hSpriteScreenY:: db NEXTU -hFF8F:: db -hFF90:: db -hFF91:: db -hFF92:: db +hCollidingSpriteOffset:: db +hCollidingSpriteTempYValue:: db +hCollidingSpriteTempXValue:: db +hCollidingSpriteAdjustedDistance:: db ENDU hTilePlayerStandingOn:: db @@ -327,11 +327,8 @@ hItemCounter:: hSavedCoordIndex:: hMissableObjectIndex:: hGymTrashCanRandNumMask:: +hInteractedWithBookshelf:: db - -NEXTU -hFFDB:: db -hFFDC:: db ENDU ds 1 diff --git a/ram/wram.asm b/ram/wram.asm index 753a9678..8c246b8a 100644 --- a/ram/wram.asm +++ b/ram/wram.asm @@ -1914,7 +1914,7 @@ wMissableObjectFlagsEnd:: ds 7 ; temp copy of SPRITESTATEDATA1_IMAGEINDEX (used for sprite facing/anim) -wd5cd:: db +wSpriteImageIndexBackup:: db ; each entry consists of 2 bytes ; * the sprite ID (depending on the current map) |
