diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-03-19 13:39:47 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2017-03-19 13:39:47 -0700 |
commit | c542eeaa15807ec6dcde674415d33c81cacdb8a6 (patch) | |
tree | 33de4a2a869d41c82f124103d4d84a7fd324527c /home.asm | |
parent | 788ab2b99f4bcffddff271591343de391ef8e670 (diff) |
Finish dumping and labeling Red Stage Bottom's game object collision data/routines.
Diffstat (limited to 'home.asm')
-rwxr-xr-x | home.asm | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -4950,24 +4950,23 @@ SubTileXPos_CollisionData7: ; 0x268e Data_26be: dr $26be, $2720 -Func_2720: ; 0x2720 +CheckGameObjectCollisions: ; 0x2720 ld a, $ff ld [wTriggeredGameObject], a - call Func_272f + call CheckGameObjectCollisions_ ld a, [wTriggeredGameObject] ld [wPreviousTriggeredGameObject], a ret -Func_272f: ; 0x272f -; not collisions +CheckGameObjectCollisions_: ; 0x272f ld a, [wCurrentStage] call CallInFollowingTable -CallTable_2735: ; 0x2735 +GameObjectCollisions_CallTable: ; 0x2735 ; STAGE_RED_FIELD_TOP padded_dab Func_143e1 ; STAGE_RED_FIELD_BOTTOM - padded_dab StageRedBottom_Func_143f9 + padded_dab CheckRedStageBottomGameObjectCollisions padded_dab Func_18061 @@ -5123,7 +5122,7 @@ IsCollisionInList: ; 0x27da scf ret -PinballCollideWithPoints: ; 0x27fd +PinballCollidesWithPoints: ; 0x27fd ; Checks if pinball collides with any of the (x, y) points in the given list. ; Saves the index of the collided point. ; Input: hl = pointer to array of (x, y) points |