diff options
Diffstat (limited to 'src/mame/drivers/zapcomputer.cpp')
-rw-r--r-- | src/mame/drivers/zapcomputer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/zapcomputer.cpp b/src/mame/drivers/zapcomputer.cpp index b876fcaf555..2b5be700b8d 100644 --- a/src/mame/drivers/zapcomputer.cpp +++ b/src/mame/drivers/zapcomputer.cpp @@ -104,7 +104,7 @@ READ8_MEMBER( zapcomp_state::keyboard_r ) for (int i=0; i<16; i++) if (hex_keys & (1 << i)) retval |= (0x80 | i); /* provide the key index in bits 3-0 - as well as turning on the strobe bit */ + as well as turning on the strobe bit */ return retval; } |