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

This commit is contained in:
rubidium 2007-02-26 00:41:24 +00:00
parent 34154aa89e
commit f3f966e616
1 changed files with 1 additions and 1 deletions

View File

@ -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;