REVIEWED: IsGestureDetected() parameter type

This commit is contained in:
Ray
2023-09-22 11:58:14 +02:00
parent 7eb49d1c7b
commit f27ea1f0c8
2 changed files with 2 additions and 2 deletions

View File

@ -255,7 +255,7 @@ void SetGesturesEnabled(unsigned int flags)
}
// Check if a gesture have been detected
bool IsGestureDetected(int gesture)
bool IsGestureDetected(unsigned int gesture)
{
if ((GESTURES.enabledFlags & GESTURES.current) == gesture) return true;
else return false;