Explorar el Código

Fix Touch pointCount for web (#3163)

pull/3166/head
ubkp hace 1 año
cometido por GitHub
padre
commit
4b6cbd2340
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. +3
    -0
      src/rcore.c

+ 3
- 0
src/rcore.c Ver fichero

@ -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

Cargando…
Cancelar
Guardar