浏览代码

Corrected input bug

pull/23/head
raysan5 9 年前
父节点
当前提交
ba257b09f5
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      src/core.c
  2. +1
    -1
      src/raylib.h

+ 1
- 1
src/core.c 查看文件

@ -1052,7 +1052,7 @@ bool IsGamepadButtonUp(int gamepad, int button)
}
#endif
#if defined(PLATFORM_ANDROID)
#if defined(PLATFORM_ANDROID) || defined(PLATFORM_WEB)
// Returns touch position X
int GetTouchX(void)
{

+ 1
- 1
src/raylib.h 查看文件

@ -446,7 +446,7 @@ bool IsGamepadButtonReleased(int gamepad, int button); // Detect if a gamepad b
bool IsGamepadButtonUp(int gamepad, int button); // Detect if a gamepad button is NOT being pressed
#endif
#if defined(PLATFORM_ANDROID)
#if defined(PLATFORM_ANDROID) || defined(PLATFORM_WEB)
int GetTouchX(void); // Returns touch position X
int GetTouchY(void); // Returns touch position Y
Vector2 GetTouchPosition(void); // Returns touch position XY

正在加载...
取消
保存