Cursor; lock cursor flag was inverted temporarily to cater for irregularity in sdl2 initial port, so undoing that.

See comments on #54 for more info on lock state.
This commit is contained in:
underscorediscovery
2014-02-08 06:53:14 -03:30
parent abad2b8035
commit 602e0ae248

View File

@@ -448,7 +448,7 @@ public:
if (inLock != mLockCursor)
{
mLockCursor = inLock;
SDL_SetRelativeMouseMode( inLock ? SDL_FALSE : SDL_TRUE );
SDL_SetRelativeMouseMode( inLock ? SDL_TRUE : SDL_FALSE );
}
}