summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pse.cpp')
-rw-r--r--src/mame/drivers/pse.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mame/drivers/pse.cpp b/src/mame/drivers/pse.cpp
index f4d72e12467..c6a1511ea3a 100644
--- a/src/mame/drivers/pse.cpp
+++ b/src/mame/drivers/pse.cpp
@@ -106,12 +106,13 @@ MACHINE_CONFIG_START(pse_state::pse)
MCFG_NETLIST_SETUP(pse)
/* video hardware */
- MCFG_FIXFREQ_ADD("fixfreq", "screen")
- MCFG_FIXFREQ_MONITOR_CLOCK(MASTER_CLOCK)
- MCFG_FIXFREQ_HORZ_PARAMS(H_TOTAL-67,H_TOTAL-40,H_TOTAL-8,H_TOTAL)
- MCFG_FIXFREQ_VERT_PARAMS(V_TOTAL-22,V_TOTAL-19,V_TOTAL-12,V_TOTAL)
- MCFG_FIXFREQ_FIELDCOUNT(1)
- MCFG_FIXFREQ_SYNC_THRESHOLD(0.30)
+ SCREEN(config, "screen", SCREEN_TYPE_RASTER);
+ FIXFREQ(config, m_video).set_screen("screen");
+ m_video->set_monitor_clock(MASTER_CLOCK);
+ m_video->set_horz_params(H_TOTAL-67,H_TOTAL-40,H_TOTAL-8,H_TOTAL);
+ m_video->set_vert_params(V_TOTAL-22,V_TOTAL-19,V_TOTAL-12,V_TOTAL);
+ m_video->set_fieldcount(1);
+ m_video->set_threshold(0.30);
MACHINE_CONFIG_END