diff options
Diffstat (limited to 'src/mess/machine/gba_slot.h')
-rw-r--r-- | src/mess/machine/gba_slot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/gba_slot.h b/src/mess/machine/gba_slot.h index dc919371ef4..b4eb0cc246a 100644 --- a/src/mess/machine/gba_slot.h +++ b/src/mess/machine/gba_slot.h @@ -110,9 +110,9 @@ extern const device_type GBA_CART_SLOT; DEVICE CONFIGURATION MACROS ***************************************************************************/ -#define MCFG_GBA_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot,_def_inp) \ +#define MCFG_GBA_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ MCFG_DEVICE_ADD(_tag, GBA_CART_SLOT, 0) \ - MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, _def_inp, false) + MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) |