]> git.sur5r.net Git - cc65/commitdiff
Two functions in the mouse_callbacks struct do actually have arguments.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 21 Nov 2005 20:40:56 +0000 (20:40 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 21 Nov 2005 20:40:56 +0000 (20:40 +0000)
Report by Oliver Schmidt.

git-svn-id: svn://svn.cc65.org/cc65/trunk@3664 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/mouse.h

index 1a8745572677941d30a977a05ba1b5631f22d089..6b48a8d851b8b017b7b97ae494674853b37e13c4 100644 (file)
@@ -82,12 +82,12 @@ struct mouse_callbacks {
     void (*show) (void);
     /* Show the mouse cursor */
 
-    void (*movex) (void);
+    void __fastcall__ (*movex) (int x);
     /* Move the mouse cursor to the new X coordinate. This function is called,
      * even when the cursor is currently invisible.
      */
 
-    void (*movey) (void);
+    void __fastcall__ (*movey) (int y);
     /* Move the mouse cursor to the new Y coordinate. This function is called,
      * even when the cursor is currently invisible.
      */