diff options
Diffstat (limited to 'src/mame/barcrest/mpu4.h')
-rw-r--r-- | src/mame/barcrest/mpu4.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/barcrest/mpu4.h b/src/mame/barcrest/mpu4.h index 58eb7a79e91..e2f56c68430 100644 --- a/src/mame/barcrest/mpu4.h +++ b/src/mame/barcrest/mpu4.h @@ -561,7 +561,7 @@ template<const uint8_t* Table> void mpu4_state::mod4oki_cheatchr_pal_f(machine_c m_maincpu->set_addrmap(AS_PROGRAM, &mpu4_state::mpu4_memmap_characteriser); - MPU4_CHARACTERISER_PAL(config, m_characteriser, 0); + MPU4_CHARACTERISER_PAL(config, m_characteriser); m_characteriser->set_cpu_tag("maincpu"); m_characteriser->set_allow_6809_cheat(true); m_characteriser->set_lamp_table(Table); @@ -573,6 +573,6 @@ template<uint8_t Fixed> void mpu4_state::mod4oki_bootleg_fixedret_f(machine_conf m_maincpu->set_addrmap(AS_PROGRAM, &mpu4_state::mpu4_memmap_bootleg_characteriser); - MPU4_CHARACTERISER_BL(config, m_characteriser_bl, 0); + MPU4_CHARACTERISER_BL(config, m_characteriser_bl); m_characteriser_bl->set_bl_fixed_return(Fixed); } |