Commit 2695ac3d authored by Andrew Hodgkinson's avatar Andrew Hodgkinson
Browse files

Couple of extra pointer types for autoscroll in the Hotlist

parent 6864b4e4
......@@ -291,6 +291,32 @@ void mouse_set_pointer_shape(int shape)
0,
0);
break;
case Mouse_Shape_ToScroll: _swix(OS_SpriteOp,
_INR(0,7),
292,
sprite_block,
"ptr_ud",
2,
fixed.ptrmapactvx,
fixed.ptrmapactvy,
0,
0);
break;
case Mouse_Shape_Scrolling: _swix(OS_SpriteOp,
_INR(0,7),
292,
sprite_block,
"ptr_udlr",
2,
fixed.ptrmapactvx,
fixed.ptrmapactvy,
0,
0);
break;
}
}
......
......@@ -33,6 +33,8 @@
#define Mouse_Shape_LR 5
#define Mouse_Shape_UDLR 6
#define Mouse_Shape_NoResize 7
#define Mouse_Shape_ToScroll 8
#define Mouse_Shape_Scrolling 9
/* Function prototypes */
......
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