소스 검색

REVIEWED: SetGamepadMappings()

return value for all platforms
pull/1557/head
raysan5 4 년 전
부모
커밋
bc332018f6
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      src/core.c

+ 5
- 1
src/core.c 파일 보기

@ -2985,9 +2985,13 @@ int GetGamepadButtonPressed(void)
// Set internal gamepad mappings
int SetGamepadMappings(const char *mappings)
{
int result = 0;
#if defined(PLATFORM_DESKTOP)
return glfwUpdateGamepadMappings(mappings);
n">result = glfwUpdateGamepadMappings(mappings);
#endif
return result;
}
// Detect if a mouse button has been pressed once

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