summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/taito_f3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/taito_f3.cpp')
-rw-r--r--src/mame/drivers/taito_f3.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/taito_f3.cpp b/src/mame/drivers/taito_f3.cpp
index 9270c17a389..d77c43d9f47 100644
--- a/src/mame/drivers/taito_f3.cpp
+++ b/src/mame/drivers/taito_f3.cpp
@@ -476,8 +476,8 @@ void taito_f3_state::f3(machine_config &config)
m_screen->set_screen_update(FUNC(taito_f3_state::screen_update_f3));
m_screen->screen_vblank().set(FUNC(taito_f3_state::screen_vblank_f3));
- GFXDECODE(config, m_gfxdecode, "palette", gfx_taito_f3);
- PALETTE(config, m_palette, 0x2000);
+ GFXDECODE(config, m_gfxdecode, m_palette, gfx_taito_f3);
+ PALETTE(config, m_palette).set_entries(0x2000);
/* sound hardware */
TAITO_EN(config, m_taito_en, 0);
@@ -569,8 +569,8 @@ void taito_f3_state::bubsympb(machine_config &config)
m_screen->set_screen_update(FUNC(taito_f3_state::screen_update_f3));
m_screen->screen_vblank().set(FUNC(taito_f3_state::screen_vblank_f3));
- GFXDECODE(config, m_gfxdecode, "palette", gfx_bubsympb);
- PALETTE(config, m_palette, 0x2000);
+ GFXDECODE(config, m_gfxdecode, m_palette, gfx_bubsympb);
+ PALETTE(config, m_palette).set_entries(0x2000);
/* sound hardware */
SPEAKER(config, "mono").front_center();