From 7ca83c47a5b7435e282f5a2101fab87227296210 Mon Sep 17 00:00:00 2001 From: mahlemiut Date: Wed, 30 Oct 2013 23:50:37 +0000 Subject: [PATCH] wpc: increased number of main CPU bank entries to account for the two versions of White Water that use 1MB ROMs. (no whatsnew) --- src/mame/drivers/wpc_dot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/wpc_dot.c b/src/mame/drivers/wpc_dot.c index d752afc82a2..433e3dbf12a 100644 --- a/src/mame/drivers/wpc_dot.c +++ b/src/mame/drivers/wpc_dot.c @@ -160,7 +160,7 @@ DRIVER_INIT_MEMBER(wpc_dot_state,wpc_dot) { UINT8 *fixed = memregion("code")->base(); UINT32 codeoff = memregion("code")->bytes() - 0x8000; - m_cpubank->configure_entries(0, 32, &fixed[0], 0x4000); + m_cpubank->configure_entries(0, 64, &fixed[0], 0x4000); m_cpubank->set_entry(0); m_fixedbank->configure_entries(0, 1, &fixed[codeoff],0x8000); m_fixedbank->set_entry(0);