diff options
Diffstat (limited to 'src/mess/drivers/channelf.c')
-rw-r--r-- | src/mess/drivers/channelf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/drivers/channelf.c b/src/mess/drivers/channelf.c index 580a0329fd9..679e19ad617 100644 --- a/src/mess/drivers/channelf.c +++ b/src/mess/drivers/channelf.c @@ -216,7 +216,7 @@ INPUT_PORTS_END -static DEVICE_IMAGE_LOAD( channelf_cart ) +DEVICE_IMAGE_LOAD_MEMBER( channelf_state, channelf_cart ) { UINT32 size; @@ -251,7 +251,7 @@ static MACHINE_CONFIG_FRAGMENT( channelf_cart ) MCFG_CARTSLOT_ADD("cart") MCFG_CARTSLOT_EXTENSION_LIST("bin,chf") MCFG_CARTSLOT_INTERFACE("channelf_cart") - MCFG_CARTSLOT_LOAD(channelf_cart) + MCFG_CARTSLOT_LOAD(channelf_state,channelf_cart) /* Software lists */ MCFG_SOFTWARE_LIST_ADD("cart_list","channelf") |