mirror of
https://github.com/86Box/86Box.git
synced 2026-02-22 09:35:32 -07:00
prt_escp: fix return value of read_ctrl
This commit is contained in:
@@ -2006,7 +2006,7 @@ read_ctrl(void *priv)
|
||||
{
|
||||
escp_t *dev = (escp_t *)priv;
|
||||
|
||||
return 0xe0 | dev->autofeed ? 0x02 : 0x00 | (dev->ctrl & 0xfd);
|
||||
return 0xe0 | (dev->autofeed ? 0x02 : 0x00) | (dev->ctrl & 0xfd);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user