summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2017-08-29 22:48:03 -0700
committerMichael Pavone <pavone@retrodev.com>2017-08-29 22:48:03 -0700
commitdc8b42153749b23905f349e75dc63e944d18e2ef (patch)
treeee3a070d9cbc7300ea7da9b4c93e6b5435f02871
parent2a0266af51413124c1b2232ce9d34440dd02c3eb (diff)
Fix regression in XBAND keyboard support. Fixes ticket:33
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index 45a8218..7b5d404 100644
--- a/io.c
+++ b/io.c
@@ -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