diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-08-29 22:48:03 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-08-29 22:48:03 -0700 |
commit | dc8b42153749b23905f349e75dc63e944d18e2ef (patch) | |
tree | ee3a070d9cbc7300ea7da9b4c93e6b5435f02871 /io.c | |
parent | 2a0266af51413124c1b2232ce9d34440dd02c3eb (diff) |
Fix regression in XBAND keyboard support. Fixes ticket:33
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2104,9 +2104,9 @@ uint8_t io_data_read(io_port * port, uint32_t current_cycle) input = 0xF; } input |= ((port->device.keyboard.tr_counter & 1) == 0) << 4; - //this is not strictly correct at all times, but good enough for now - device_driven = 0x1F; } + //this is not strictly correct at all times, but good enough for now + device_driven = 0x1F; break; } #ifndef _WIN32 |