| 2553 | #define MH_START 4 |
| 2554 | |
| 2555 | int inputdevice_is_tablet (void) |
| 2556 | { |
| 2557 | int v; |
| 2558 | if (uae_boot_rom_type <= 0) |
| 2559 | return 0; |
| 2560 | if (currprefs.input_tablet == TABLET_OFF) |
| 2561 | return 0; |
| 2562 | if (currprefs.input_tablet == TABLET_MOUSEHACK) |
| 2563 | return -1; |
| 2564 | v = is_tablet (); |
| 2565 | if (!v) |
| 2566 | return 0; |
| 2567 | if (kickstart_version < 37) |
| 2568 | return v ? -1 : 0; |
| 2569 | return v ? 1 : 0; |
| 2570 | } |
| 2571 | |
| 2572 | static uae_u8 *mousehack_address; |
| 2573 | static bool mousehack_enabled; |
no test coverage detected