aboutsummaryrefslogtreecommitdiffstats
path: root/cursor.h
diff options
context:
space:
mode:
authorJaroslav Hensl <jara@hensl.cz>2024-02-03 23:52:13 +0100
committerJaroslav Hensl <jara@hensl.cz>2024-02-03 23:52:13 +0100
commit981b488286abc6d7c8c10933d41a0a0bb2483921 (patch)
tree10586e9bd93bd4198d7f09e124ca2495247921f0 /cursor.h
parentc8fa3c1ff1a18a6013d927e4b14f82bae343adbb (diff)
downloadvmdisp9x-981b488286abc6d7c8c10933d41a0a0bb2483921.tar.gz
driver code refactoring / PART3: mouse cursor (SW)
Diffstat (limited to 'cursor.h')
-rw-r--r--cursor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cursor.h b/cursor.h
index 99784f7..fbf37df 100644
--- a/cursor.h
+++ b/cursor.h
@@ -6,9 +6,9 @@
#pragma pack(1)
typedef struct _CURSORSHAPE
{
- int xHotSpot, yHotSpot;
- int cx, cy;
- int cbWidth;
+ short xHotSpot, yHotSpot;
+ short cx, cy;
+ short cbWidth;
BYTE Planes;
BYTE BitsPixel;
} CURSORSHAPE;