From a0ce90083722b8a26bcfc2bccd1ca1cd020e2ea8 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 24 Aug 2023 23:49:06 +0200 Subject: [PATCH] Temporarily disable the Wacom tablets. --- src/device/CMakeLists.txt | 2 +- src/device/mouse.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/device/CMakeLists.txt b/src/device/CMakeLists.txt index 7852417d9..2988152c1 100644 --- a/src/device/CMakeLists.txt +++ b/src/device/CMakeLists.txt @@ -22,7 +22,7 @@ add_library(dev OBJECT bugger.c cassette.c cartridge.c hasp.c hwm.c hwm_lm75.c h kbc_at.c kbc_at_dev.c keyboard_at.c mouse.c mouse_bus.c mouse_serial.c mouse_ps2.c phoenix_486_jumper.c - mouse_wacom_tablet.c serial_passthrough.c) + serial_passthrough.c) if(NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang") target_link_libraries(86Box atomic) diff --git a/src/device/mouse.c b/src/device/mouse.c index 0a80447ed..93251531c 100644 --- a/src/device/mouse.c +++ b/src/device/mouse.c @@ -94,8 +94,10 @@ static mouse_t mouse_devices[] = { { &mouse_msserial_device }, { &mouse_ltserial_device }, { &mouse_ps2_device }, +#ifdef USE_WACOM { &mouse_wacom_device }, { &mouse_wacom_artpad_device }, +#endif { NULL } // clang-format on };