mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 18:19:55 +00:00
Fix an uninitalized member, and also make sure the mouse is captured when OpenMW starts
This commit is contained in:
parent
4c8a04d9cb
commit
88acebf808
1 changed files with 2 additions and 1 deletions
3
extern/sdl4ogre/sdlinputwrapper.cpp
vendored
3
extern/sdl4ogre/sdlinputwrapper.cpp
vendored
|
@ -26,7 +26,8 @@ namespace SFO
|
||||||
mWrapPointer(false),
|
mWrapPointer(false),
|
||||||
mMouseZ(0),
|
mMouseZ(0),
|
||||||
mMouseY(0),
|
mMouseY(0),
|
||||||
mMouseX(0)
|
mMouseX(0),
|
||||||
|
mMouseInWindow(true)
|
||||||
{
|
{
|
||||||
_setupOISKeys();
|
_setupOISKeys();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue