소스 검색

Reverted change that breaks mouse on web

pull/849/head
Ray 5 년 전
부모
커밋
316b6aa181
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -2
      src/core.c

+ 4
- 2
src/core.c 파일 보기

@ -2163,11 +2163,12 @@ bool IsMouseButtonPressed(int button)
if ((currentMouseState[button] != previousMouseState[button]) && (currentMouseState[button] == 1)) pressed = true;
#endif
/*
#if defined(PLATFORM_WEB)
Vector2 pos = GetTouchPosition(0);
if ((pos.x > 0) && (pos.y > 0)) pressed = true; // There was a touch!
#endif
*/
return pressed;
}
@ -2239,13 +2240,14 @@ Vector2 GetMousePosition(void)
#else
position = (Vector2){ (mousePosition.x + mouseOffset.x)*mouseScale.x, (mousePosition.y + mouseOffset.y)*mouseScale.y };
#endif
/*
#if defined(PLATFORM_WEB)
Vector2 pos = GetTouchPosition(0);
// Touch position has priority over mouse position
if ((pos.x > 0) && (pos.y > 0)) position = pos; // There was a touch!
#endif
*/
return position;
}

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