diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-03-01 00:08:18 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-03-01 00:08:18 -0800 |
commit | b8aed7e38c43ebc2707f3467cbecdb6b076ffd3d (patch) | |
tree | 19f6221025da2dd0c2f4571c4fe4ab79a59c0795 /io.c | |
parent | 05e931ae02e3290566dcca0ca639dc019084edd7 (diff) |
Fix removal of scan codes from buffer in XBAND keyboard
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1642,7 +1642,7 @@ void io_data_write(io_port * port, uint8_t value, uint32_t current_cycle) if (output & TH) { //request is over if ( - port->device.keyboard.mode == KB_READ && port->device.keyboard.tr_counter > 7 + port->device.keyboard.mode == KB_READ && port->device.keyboard.tr_counter > 6 && (port->device.keyboard.tr_counter & 1) ) { if (port->device.keyboard.events[port->device.keyboard.read_pos] & 0xFF00) { |