Initialize struct member before use...

--HG--
branch : develop
This commit is contained in:
dfighter1985 2014-09-27 18:20:29 +02:00
parent 938c36027d
commit c6df57adf1

View file

@ -1851,6 +1851,9 @@ bool CDriverGL::setMode(const GfxMode& mode)
#if defined(NL_OS_WINDOWS)
// save relative cursor
POINT cursorPos;
cursorPos.x = 0;
cursorPos.y = 0;
BOOL cursorPosOk = isSystemCursorInClientArea()
&& GetCursorPos(&cursorPos)
&& ScreenToClient(_win, &cursorPos);