Commit 6456acb4 authored by Sam Lantinga's avatar Sam Lantinga

Moved function for consistency

parent e666b3b2
......@@ -26,8 +26,8 @@
extern void Cocoa_InitMouse(_THIS);
extern void Cocoa_HandleMouseEvent(_THIS, NSEvent * event);
extern void Cocoa_QuitMouse(_THIS);
extern void Cocoa_HandleMouseWheel(SDL_Window *window, NSEvent * event);
extern void Cocoa_QuitMouse(_THIS);
#endif /* _SDL_cocoamouse_h */
......
......@@ -107,11 +107,6 @@ Cocoa_HandleMouseEvent(_THIS, NSEvent *event)
}
}
void
Cocoa_QuitMouse(_THIS)
{
}
void
Cocoa_HandleMouseWheel(SDL_Window *window, NSEvent *event)
{
......@@ -131,4 +126,9 @@ Cocoa_HandleMouseWheel(SDL_Window *window, NSEvent *event)
SDL_SendMouseWheel(window, (int)x, (int)y);
}
void
Cocoa_QuitMouse(_THIS)
{
}
/* vi: set ts=4 sw=4 expandtab: */
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