]> git.sur5r.net Git - cc65/commitdiff
Minor changes
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 8 Sep 2001 20:04:21 +0000 (20:04 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 8 Sep 2001 20:04:21 +0000 (20:04 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@874 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/mouse.h

index 0a1294e1a43f2f56e0090609ebae4bd0471b80d1..9eaccb990db68a76e13a98bd9d0f089122ba0795 100644 (file)
@@ -59,6 +59,7 @@
 
 /* Mouse button masks */
 #define MOUSE_BTN_LEFT      0x10
+#define MOUSE_BTN_RIGHT      0x01
 
 /* Structure containing the mouse coordinates */
 struct mouse_pos {
@@ -68,8 +69,7 @@ struct mouse_pos {
 
 /* Structure containing information about the mouse */
 struct mouse_info {
-    int                 xpos;          /* Mouse x position */
-    int                 ypos;          /* Mouse y position */
+    struct mouse_pos    pos;           /* Mouse position */
     unsigned char       buttons;       /* Mouse button mask */
 };