diff options
author | 2014-10-28 17:09:00 +0000 | |
---|---|---|
committer | 2014-10-28 17:09:00 +0000 | |
commit | 8def94f78557c726521dbe136c4d0828e0db5b4a (patch) | |
tree | 0664383d7ac973f67f7a384b365a0f59f3dbb2e9 /src/emu/bus/c64 | |
parent | 1ca9906f84d191baedcbf81e78a9024ac0af96d8 (diff) |
Use the same list of centronics devices everywhere (except the Amstrad CPC), the list has been renamed as they aren't all printers. [smf]
Diffstat (limited to 'src/emu/bus/c64')
-rw-r--r-- | src/emu/bus/c64/geocable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/c64/geocable.c b/src/emu/bus/c64/geocable.c index 3f7b9f0f719..98deb96f93e 100644 --- a/src/emu/bus/c64/geocable.c +++ b/src/emu/bus/c64/geocable.c @@ -33,7 +33,7 @@ const device_type C64_GEOCABLE = &device_creator<c64_geocable_device>; //------------------------------------------------- static MACHINE_CONFIG_FRAGMENT( c64_geocable ) - MCFG_CENTRONICS_ADD("centronics", centronics_printers, "printer") + MCFG_CENTRONICS_ADD("centronics", centronics_devices, "printer") MCFG_CENTRONICS_BUSY_HANDLER(WRITELINE(c64_geocable_device, output_b)) MACHINE_CONFIG_END |