--- np2/io/mouseif.c 2005/03/05 06:02:29 1.14 +++ np2/io/mouseif.c 2007/11/03 00:00:20 1.16 @@ -183,7 +183,11 @@ static REG8 IOINPCALL mouseif_i7fd9(UINT ret |= mouseif.rapid; } ret &= 0xf0; +#if 1 + ret |= 0x40; // for shizuku +#else ret |= 0x50; +#endif portc = mouseif.upd8255.portc; if (portc & 0x80) { x = mouseif.latch_x; @@ -250,15 +254,19 @@ static void IOOUTCALL mouseif_obfdb(UINT // ---- I/F -void mouseif_reset(void) { +void mouseif_reset(const NP2CFG *pConfig) { ZeroMemory(&mouseif, sizeof(mouseif)); mouseif.upd8255.porta = 0x00; mouseif.upd8255.portb = 0x00; - mouseif.upd8255.portc = 0x10; + mouseif.upd8255.portc = 0xf0; // ver0.82 mouseif.upd8255.mode = 0x93; mouseif.intrclock = pccore.realclock / 120; mouseif.moveclock = pccore.realclock / 56400; + mouseif.latch_x = -1; + mouseif.latch_y = -1; + + (void)pConfig; } void mouseif_bind(void) {