diff options
Diffstat (limited to 'src/mame/drivers/fastlane.cpp')
-rw-r--r-- | src/mame/drivers/fastlane.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/fastlane.cpp b/src/mame/drivers/fastlane.cpp index ef623cc877c..ad8681fc8df 100644 --- a/src/mame/drivers/fastlane.cpp +++ b/src/mame/drivers/fastlane.cpp @@ -223,9 +223,10 @@ MACHINE_CONFIG_START(fastlane_state::fastlane) MCFG_PALETTE_FORMAT(xBBBBBGGGGGRRRRR) MCFG_PALETTE_INIT_OWNER(fastlane_state, fastlane) - MCFG_K007121_ADD("k007121") - MCFG_K007121_PALETTE("palette") - MCFG_K051733_ADD("k051733") + K007121(config, m_k007121, 0); + m_k007121->set_palette_tag(m_palette); + + K051733(config, "k051733", 0); /* sound hardware */ SPEAKER(config, "mono").front_center(); |