I use svn version of OIS and uncomment next lines in
OISConsole.cpp//For this demo, show mouse and do not grab (confine to window)
//pl.insert(std::make_pair(std::string("x11_mouse_grab"), std::string("false")));
//pl.insert(std::make_pair(std::string("x11_mouse_hide"), std::string("false")));
I use linux(testing debian), and when i run demo(ConsolApp) i get next output:
MouseMoved: Abs(-6, 25, 0) Rel(-1, 6, 0)
But abs position of cursor can't be negative
Left top point position is (-6,-6) instead of (0,0)
If I comment lines again, it writes correct cursor position(Left top point position is (0,0))
How can I fix it?