--- np2/io/printif.c 2003/12/08 00:55:32 1.2 +++ np2/io/printif.c 2003/12/21 16:05:25 1.3 @@ -20,15 +20,16 @@ static REG8 IOINPCALL prt_i42(UINT port) if (np2cfg.dipsw[0] & 0x80) { ret |= 0x08; } -#ifndef EPSON_286 - if (CPU_TYPE & CPUTYPE_V30) { - ret |= 0x02; + if (!(pc.model & PCMODEL_EPSON)) { + if (CPU_TYPE & CPUTYPE_V30) { + ret |= 0x02; + } } -#else - if (np2cfg.dipsw[2] & 0x80) { - ret |= 0x02; + else { + if (np2cfg.dipsw[2] & 0x80) { + ret |= 0x02; + } } -#endif (void)port; return(ret); }