Parcourir la source

Fix touch count reset (#4488)

pull/4489/head
Asdqwe il y a 3 jours
committed by GitHub
Parent
révision
700e2c5e5d
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: B5690EEEBB952194
1 fichiers modifiés avec 6 ajouts et 3 suppressions
  1. +6
    -3
      src/platforms/rcore_web.c

+ 6
- 3
src/platforms/rcore_web.c Voir le fichier

@ -1778,11 +1778,14 @@ static EM_BOOL EmscriptenTouchCallback(int eventType, const EmscriptenTouchEvent
// Gesture data is sent to gestures system for processing
ProcessGestureEvent(gestureEvent);
// Reset the pointCount for web, if it was the last Touch End event
if (eventType == EMSCRIPTEN_EVENT_TOUCHEND && CORE.Input.Touch.pointCount == 1) CORE.Input.Touch.pointCount = 0;
#endif
if (eventType == EMSCRIPTEN_EVENT_TOUCHEND)
{
CORE.Input.Touch.pointCount--;
if (CORE.Input.Touch.pointCount < 0) CORE.Input.Touch.pointCount = 0;
}
return 1; // The event was consumed by the callback handler
}

Chargement…
Annuler
Enregistrer