aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2026-09-05 00:14:51 +0200
committerJavier <dev.git@javispedro.com>2026-09-05 00:14:51 +0200
commita8a4256bca568f328d7d19ed0ed6456df582d1e6 (patch)
tree778a9650a059b228aa72527540c4a875769a3fe5
parent1b9e3118374a13dc12652d87b1dd3d1ccfecbbf3 (diff)
downloadvbados-a8a4256bca568f328d7d19ed0ed6456df582d1e6.tar.gz
vbados-a8a4256bca568f328d7d19ed0ed6456df582d1e6.zip
remove unused code
-rw-r--r--makefile1
-rw-r--r--moustest.c14
2 files changed, 0 insertions, 15 deletions
diff --git a/makefile b/makefile
index 1383c12..efa98a3 100644
--- a/makefile
+++ b/makefile
@@ -124,7 +124,6 @@ flp: vbados.flp $(bins) $(infs) .SYMBOLIC
# Build a zip with the driver binaries
zip: vbmouse.exe vbmouse.drv oemsetup.inf vbsf.exe .SYMBOLIC
- zip --DOS-names -fz- -j vbados.zip nls/vbsf.* nls/vbmouse.*
zip --DOS-names -fz- vbados.zip $(bins) $(infs)
srczip: .SYMBOLIC
diff --git a/moustest.c b/moustest.c
index 5d43e54..cca2b63 100644
--- a/moustest.c
+++ b/moustest.c
@@ -359,20 +359,6 @@ int modelist_get_current()
return 0;
}
-void __far modelist_mouse_callback(uint16_t events, uint16_t buttons, int16_t x, int16_t y, int16_t delta_x, int16_t delta_y)
-#pragma aux (INT33_CB) mouse_callback
-{
- int8_t z = buttons >> 8;
-
- (void) delta_x;
- (void) delta_y;
-
-#if 1
- dprintf(DPREFIX "modelist_mouse_callback events=0x%x buttons=0x%x x=%d y=%d dx=%d dy=%d\n",
- events, buttons, x, y, delta_x, delta_y);
-#endif
-}
-
void modelist_draw_window()
{
const int list_width = 23;