pmd-sky/src/overlay_29_02340CAC.c
AnonymousRandomPerson f0b49548c3 Decomped PosIsOutOfBounds
Decomped by @DizzyEggg
2024-12-16 23:47:45 -05:00

16 lines
294 B
C

#include "overlay_29_02340CAC.h"
#include "dungeon.h"
bool8 PosIsOutOfBounds(s32 x, s32 y)
{
if (x < 0)
return TRUE;
if (y < 0)
return TRUE;
if (DUNGEON_MAX_SIZE_X <= x)
return TRUE;
if (DUNGEON_MAX_SIZE_Y <= y)
return TRUE;
return FALSE;
}