Explorar el Código

input: fix uninitialised variable.

legacy
Sam Hocevar hace 9 años
padre
commit
3544e76a4d
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      src/input/input.h

+ 3
- 1
src/input/input.h Ver fichero

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


Cargando…
Cancelar
Guardar