ソースを参照

core: port everything to SDL 1.3.

legacy
Sam Hocevar sam 13年前
コミット
71844c65bb
1個のファイルの変更4行の追加0行の削除
  1. +4
    -0
      src/input.cpp

+ 4
- 0
src/input.cpp ファイルの表示

@@ -63,7 +63,11 @@ vec2 Input::GetAxis(int axis)

#if defined USE_SDL
/* Simulate a joystick using the keyboard. This SDL call is free. */
#if SDL_MAJOR_VERSION == 1 && SDL_MINOR_VERSION >= 3
Uint8 *keystate = SDL_GetKeyboardState(NULL);
#else
Uint8 *keystate = SDL_GetKeyState(NULL);
#endif
int left = keystate[SDLK_d] - (keystate[SDLK_a] | keystate[SDLK_q]);
int up = (keystate[SDLK_w] | keystate[SDLK_z]) - keystate[SDLK_s] ;
ret.x += left;


読み込み中…
キャンセル
保存