Procházet zdrojové kódy

Fix Touch pointCount for web (#3163)

pull/3166/head
ubkp před 1 rokem
odevzdal GitHub
rodič
revize
4b6cbd2340
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 3 přidání a 0 odebrání
  1. +3
    -0
      src/rcore.c

+ 3
- 0
src/rcore.c Zobrazit soubor

@ -6139,6 +6139,9 @@ 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
return 1; // The event was consumed by the callback handler

Načítá se…
Zrušit
Uložit