浏览代码

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);
}


正在加载...
取消
保存