diff options
Diffstat (limited to 'src/mess/machine/intv.c')
-rw-r--r-- | src/mess/machine/intv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/intv.c b/src/mess/machine/intv.c index 83221c8e330..06a34d35384 100644 --- a/src/mess/machine/intv.c +++ b/src/mess/machine/intv.c @@ -545,7 +545,7 @@ static int intv_load_rom_file(device_image_interface &image) } } -DEVICE_IMAGE_LOAD( intv_cart ) +DEVICE_IMAGE_LOAD_MEMBER( intv_state,intv_cart ) { if (image.software_entry() == NULL) return intv_load_rom_file(image); @@ -820,7 +820,7 @@ WRITE8_MEMBER( intv_state::intv_ecs_porta_w ) /* Intellivision console + keyboard component */ -DEVICE_IMAGE_LOAD( intvkbd_cart ) +DEVICE_IMAGE_LOAD_MEMBER( intv_state,intvkbd_cart ) { if (strcmp(image.device().tag(),":cart1") == 0) /* Legacy cartridge slot */ { |