aboutsummaryrefslogtreecommitdiff
path: root/int33.h
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2022-12-11 16:26:11 +0100
committerJavier <dev.git@javispedro.com>2022-12-11 16:26:11 +0100
commit7e3679f7c06cee1bd5ca76c6efdebc8ce367f587 (patch)
tree2f76a37476b235cc9d2d804ca7d345d6f851b060 /int33.h
parent5fc2534453bfadb0ec0075d38980a0423137ab26 (diff)
downloadvbados-7e3679f7c06cee1bd5ca76c6efdebc8ce367f587.tar.gz
vbados-7e3679f7c06cee1bd5ca76c6efdebc8ce367f587.zip
do not allow the show cursor counter to go above 0
Diffstat (limited to 'int33.h')
-rw-r--r--int33.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/int33.h b/int33.h
index 10816f0..ebe9476 100644
--- a/int33.h
+++ b/int33.h
@@ -28,7 +28,8 @@ enum INT33_API {
* On return, ax = 0xFFFF, bx = number of buttons. */
INT33_RESET_MOUSE = 0,
- /** Increment the cursor visible counter. The cursor is shown when the counter is >= 0. */
+ /** Increment the cursor visible counter. The cursor is shown when the counter is >= 0.
+ * Note: the internal cursor counter is always <= 0. */
INT33_SHOW_CURSOR = 1,
/** Decrement the cursor visible counter. The cursor is shown when the counter is >= 0. */
INT33_HIDE_CURSOR = 2,