changeset 1453:cd6e566eb6b9

Fix regression in XBAND keyboard support. Fixes ticket:33
author Michael Pavone <pavone@retrodev.com>
date Tue, 29 Aug 2017 22:48:03 -0700
parents f284ad74afe1
children a664bade4b29
files io.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/io.c	Tue Aug 29 19:43:38 2017 -0700
+++ b/io.c	Tue Aug 29 22:48:03 2017 -0700
@@ -2104,9 +2104,9 @@
 				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