ソースを参照

input: fixed crash when user rotate the mouse wheel

undefined
コミット
e1a4367226
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      src/platform/sdl/sdlinput.cpp

+ 3
- 1
src/platform/sdl/sdlinput.cpp ファイルの表示

@@ -194,7 +194,9 @@ void SdlInputData::Tick(float seconds)
case SDL_MOUSEBUTTONDOWN:
case SDL_MOUSEBUTTONUP:
{
m_mouse->SetKey(event.button.button - 1, event.type == SDL_MOUSEBUTTONDOWN);
if (event.button.button != SDL_BUTTON_WHEELUP && event.button.button != SDL_BUTTON_WHEELDOWN)
m_mouse->SetKey(event.button.button - 1, event.type == SDL_MOUSEBUTTONDOWN);
// TODO: mouse wheel as axis
break;
}



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