mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 10:35:43 -05:00
Fix issue #229: Mouse movement does not work on OSX/Macbook Pro properly
This commit is contained in:
parent
1fac08f3ef
commit
d3d304e008
1 changed files with 2 additions and 0 deletions
|
@ -234,6 +234,8 @@ namespace entry
|
|||
switch (eventType)
|
||||
{
|
||||
case NSMouseMoved:
|
||||
case NSLeftMouseDragged:
|
||||
case NSRightMouseDragged:
|
||||
{
|
||||
int x, y;
|
||||
getMousePos(&x, &y);
|
||||
|
|
Loading…
Reference in a new issue