1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 17:56:21 +00:00

Two functions in the mouse_callbacks struct do actually have arguments.

Report by Oliver Schmidt.


git-svn-id: svn://svn.cc65.org/cc65/trunk@3664 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-11-21 20:40:56 +00:00
parent 3c74435ac4
commit 6ae943402d

View 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.
*/