소스 검색

input: fix uninitialised variable.

legacy
Sam Hocevar 9 년 전
부모
커밋
3544e76a4d
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      src/input/input.h

+ 3
- 1
src/input/input.h 파일 보기

@@ -211,7 +211,9 @@ protected:

static bool m_capturemouse;

InputDevice(String const &name) : m_name(name)
InputDevice(String const &name)
: m_name(name),
m_input_active(false)
{
devices.push_unique(this);
}


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