From fd1fdd3792e169adddfcebea5c42ca5378e80482 Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 7 Aug 2023 04:03:58 +0200 Subject: [PATCH] Once again initialize mice after serial ports, should fix serial mice. --- src/86box.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/86box.c b/src/86box.c index cbd29a6ed..49da06224 100644 --- a/src/86box.c +++ b/src/86box.c @@ -1061,11 +1061,6 @@ pc_reset_hard_init(void) * that will be a call to device_reset_all() later ! */ - /* - * Reset the mouse, this will attach it to any port needed. - */ - mouse_reset(); - if (joystick_type) gameport_update_joystick_type(); @@ -1081,6 +1076,11 @@ pc_reset_hard_init(void) serial_standalone_init(); serial_passthrough_init(); + /* + * Reset the mouse, this will attach it to any port needed. + */ + mouse_reset(); + /* Reset the Hard Disk Controller module. */ hdc_reset();