From a8a4256bca568f328d7d19ed0ed6456df582d1e6 Mon Sep 17 00:00:00 2001 From: Javier Date: Sat, 5 Sep 2026 00:14:51 +0200 Subject: remove unused code --- makefile | 1 - moustest.c | 14 -------------- 2 files changed, 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; -- cgit v1.2.3