Replace manual check with SDL_PointInRect

This commit is contained in:
AllyTally 2023-08-03 17:55:25 -03:00 committed by Misa Elizabeth Kai
parent 63620efac8
commit 55a05342e9
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ namespace level_debugger
bool mouse_within(SDL_Rect* rect)
{
return key.mx >= rect->x && key.mx < rect->x + rect->w &&
key.my >= rect->y && key.my < rect->y + rect->h;
SDL_Point mouse = { key.mx, key.my };
return SDL_PointInRect(&mouse, rect);
}
void set_forced(void)