소스 검색

WARNING: REVIEWED: A big bug with `GetMouseWheelMove()`

pull/2258/head
Ray 3 년 전
부모
커밋
7eb341ccaf
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/rcore.c

+ 2
- 2
src/rcore.c 파일 보기

@ -3671,10 +3671,10 @@ float GetMouseWheelMove(void)
return 0.0f;
#endif
#if defined(PLATFORM_WEB)
return CORE.Input.Mouse.previousWheelMove/100.0f;
return CORE.Input.Mouse.currentWheelMove/100.0f;
#endif
return CORE.Input.Mouse.previousWheelMove;
return CORE.Input.Mouse.currentWheelMove;
}
// Set mouse cursor

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