From 08d8bed0c2aa59d09c3b0ad23c04c72e975ab104 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 7 Jul 2013 08:14:49 +0000 Subject: [PATCH] (MESS)vsmile: pooh game loads and goes till menu screen (nw) --- src/mess/drivers/vii.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mess/drivers/vii.c b/src/mess/drivers/vii.c index 8af4fed7dcf..5cfa21feec9 100644 --- a/src/mess/drivers/vii.c +++ b/src/mess/drivers/vii.c @@ -993,7 +993,7 @@ DEVICE_IMAGE_LOAD_MEMBER( vii_state, vsmile_cart ) // for whatever reason if we copy more than this, the CPU // is not happy and VSmile won't show anything... bankswitch? - for (int i = 0; i < 0x400000; i += 2) + for (int i = 0; i < 0x800000; i += 2) ROM[i / 2] = pick_integer_le(CART, i, 2); return IMAGE_INIT_PASS; @@ -1149,7 +1149,7 @@ static MACHINE_CONFIG_START( vsmile, vii_state ) MCFG_CARTSLOT_LOAD( vii_state, vsmile_cart ) MCFG_CARTSLOT_INTERFACE("vsmile_cart") - MCFG_SOFTWARE_LIST_ADD("cart_list","vsmile") + MCFG_SOFTWARE_LIST_ADD("cart_list","vsmile_cart") MACHINE_CONFIG_END static const i2cmem_interface i2cmem_interface =