ref: bdeb494add78beb8d00375f352a2c49e9f7fd32b
dir: /engine/overworld/is_player_just_outside_map.asm/
; returns whether the player is one tile outside the map in Z IsPlayerJustOutsideMap: ld a, [wYCoord] ld b, a ld a, [wCurMapHeight] call .compareCoordWithMapDimension ret z ld a, [wXCoord] ld b, a ld a, [wCurMapWidth] .compareCoordWithMapDimension add a cp b ret z inc b ret