diff options
author | 2012-09-16 05:24:30 +0000 | |
---|---|---|
committer | 2012-09-16 05:24:30 +0000 | |
commit | 1a301849034da9956b893453acce8e0f9168e150 (patch) | |
tree | a39f7a6c6b4c54b7993e58cd22ea6b6bd25f37cf /src/mess/machine/kay_kbd.c | |
parent | 91f928d6cd774c9526c7fde7e0860aded24d08a5 (diff) |
Final round of struct/union/enum normalization.
Diffstat (limited to 'src/mess/machine/kay_kbd.c')
-rw-r--r-- | src/mess/machine/kay_kbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/kay_kbd.c b/src/mess/machine/kay_kbd.c index fef580f2b29..1a12077e8a0 100644 --- a/src/mess/machine/kay_kbd.c +++ b/src/mess/machine/kay_kbd.c @@ -64,7 +64,7 @@ * - "Keypad ," is not mapped */ -typedef struct _kay_kbd_t +struct kay_kbd_t { device_t *beeper; UINT8 buff[16]; @@ -78,7 +78,7 @@ typedef struct _kay_kbd_t int key; int repeat; int repeater; -} kay_kbd_t; +}; INPUT_PORTS_START( kay_kbd ) PORT_START("ROW0") |