diff options
author | Javier <dev.git@javispedro.com> | 2022-12-11 16:26:11 +0100 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-12-11 16:26:11 +0100 |
commit | 7e3679f7c06cee1bd5ca76c6efdebc8ce367f587 (patch) | |
tree | 2f76a37476b235cc9d2d804ca7d345d6f851b060 /int33.h | |
parent | 5fc2534453bfadb0ec0075d38980a0423137ab26 (diff) | |
download | vbados-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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, |