소스 검색

have .scroll be 0 by default

pull/4637/head
ColleagueRiley 3 달 전
부모
커밋
e75de4ba49
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/platforms/rcore_desktop_rgfw.c

+ 2
- 2
src/platforms/rcore_desktop_rgfw.c 파일 보기

@ -1014,7 +1014,7 @@ void PollInputEvents(void)
{
CORE.Input.Mouse.currentWheelMove.y = event->scroll;
break;
}
} else CORE.Input.Mouse.currentWheelMove.y = 0;
int btn = event->button;
if (btn == RGFW_mouseLeft) btn = 1;
@ -1032,7 +1032,7 @@ void PollInputEvents(void)
{
CORE.Input.Mouse.currentWheelMove.y = event->scroll;
break;
}
} else CORE.Input.Mouse.currentWheelMove.y = 0;
int btn = event->button;
if (btn == RGFW_mouseLeft) btn = 1;

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