Ver código fonte

Corrected input bug

pull/23/head
raysan5 9 anos atrás
pai
commit
ba257b09f5
2 arquivos alterados com 2 adições e 2 exclusões
  1. +1
    -1
      src/core.c
  2. +1
    -1
      src/raylib.h

+ 1
- 1
src/core.c Ver arquivo

@ -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 Ver arquivo

@ -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

Carregando…
Cancelar
Salvar