Fix uninitialized variable that would sometimes prevent mouse movement from being registered by libRocket
This commit is contained in:
parent
03e377091d
commit
caf986fa2a
|
|
@ -34,6 +34,8 @@ TypeHandle RocketInputHandler::_type_handle;
|
|||
RocketInputHandler::
|
||||
RocketInputHandler(const string &name) :
|
||||
DataNode(name),
|
||||
_mouse_xy(-1),
|
||||
_mouse_xy_changed(false),
|
||||
_modifiers(0),
|
||||
_wheel_delta(0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue