소스 검색

Reviewed #3323

pull/3325/head
Ray 1 년 전
부모
커밋
5c9cc3f9f7
1개의 변경된 파일5개의 추가작업 그리고 9개의 파일을 삭제
  1. +5
    -9
      src/rcore.c

+ 5
- 9
src/rcore.c 파일 보기

@ -6979,15 +6979,11 @@ static void *EventThread(void *arg)
gestureEvent.touchAction = touchAction;
gestureEvent.pointCount = CORE.Input.Touch.pointCount;
gestureEvent.pointId[0] = 0;
gestureEvent.pointId[1] = 1;
gestureEvent.pointId[2] = 2;
gestureEvent.pointId[3] = 3;
gestureEvent.position[0] = CORE.Input.Touch.position[0];
gestureEvent.position[1] = CORE.Input.Touch.position[1];
gestureEvent.position[2] = CORE.Input.Touch.position[2];
gestureEvent.position[3] = CORE.Input.Touch.position[3];
for (int i = 0; i < MAX_TOUCH_POINTS; i++)
{
gestureEvent.pointId[i] = i;
gestureEvent.position[i] = CORE.Input.Touch.position[i];
}
ProcessGestureEvent(gestureEvent);
}

불러오는 중...
취소
저장