shithub: pokered

ref: bbc257476f9aac8d04d75a8036d412caa8f7d515
dir: /engine/overworld/is_player_just_outside_map.asm/

View raw version
; 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