Commit 76afd787 authored by Sam Lantinga's avatar Sam Lantinga

Fixed mouse motion on MacOS X (recently broken)

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40455
parent a3897183
...@@ -449,6 +449,8 @@ static void QZ_PumpEvents (_THIS) ...@@ -449,6 +449,8 @@ static void QZ_PumpEvents (_THIS)
NSPoint p = [ event locationInWindow ]; NSPoint p = [ event locationInWindow ];
QZ_PrivateCocoaToSDL(this, &p); QZ_PrivateCocoaToSDL(this, &p);
SDL_PrivateMouseMotion (0, 0, p.x, p.y);
firstMouseEvent = 0; firstMouseEvent = 0;
} }
else { else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment