(svn r8907) -Fix (r3281): reading from an unitialized variable.

pull/155/head
rubidium 18 years ago
parent 58f2b636b4
commit 67201b129d

@ -508,12 +508,12 @@ static bool QZ_PollEvent(void)
break;
case NSLeftMouseDown:
pt = QZ_GetMouseLocation(event);
if (!([ event modifierFlags ] & NSCommandKeyMask) ||
!QZ_MouseIsInsideView(&pt)) {
[NSApp sendEvent:event];
}
pt = QZ_GetMouseLocation(event);
if (!QZ_MouseIsInsideView(&pt)) {
QZ_ShowMouse();
break;

Loading…
Cancel
Save