1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-02 19:13:31 +02:00

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

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)