mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Replace manual check with SDL_PointInRect
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
63620efac8
commit
55a05342e9
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user