change defined() to 0/1 check (#5599)

This commit is contained in:
Thomas Anderson
2026-02-26 16:41:33 -06:00
committed by GitHub
parent c686e087b3
commit d8861cc35f
7 changed files with 18 additions and 18 deletions

View File

@ -405,7 +405,7 @@ const char *GetKeyName(int key)
// Register all input events
void PollInputEvents(void)
{
#if defined(SUPPORT_GESTURES_SYSTEM)
#if SUPPORT_GESTURES_SYSTEM
// NOTE: Gestures update must be called every frame to reset gestures correctly
// because ProcessGestureEvent() is just called on an event, not every frame
UpdateGestures();