summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/dpb_combiner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/dpb_combiner.cpp')
-rw-r--r--src/mame/video/dpb_combiner.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mame/video/dpb_combiner.cpp b/src/mame/video/dpb_combiner.cpp
index 65e11d0da53..8d0f162b1e8 100644
--- a/src/mame/video/dpb_combiner.cpp
+++ b/src/mame/video/dpb_combiner.cpp
@@ -5,9 +5,6 @@
dpb_combiner.cpp
DPB-7000/1 - Combiner Card
- TODO:
- - Hook up clocked logic (multipliers, blanking, etc.)
-
***************************************************************************/
#include "emu.h"
@@ -140,7 +137,7 @@ void dpb7000_combiner_card_device::device_add_mconfig(machine_config &config)
TMC28KU(config, m_mult_ga);
SCREEN(config, m_screen, SCREEN_TYPE_RASTER);
- m_screen->set_raw(clock(), 910, 0, 640, 525, 0, 480);
+ m_screen->set_raw(DERIVED_CLOCK(1, 1), 910, 0, 640, 525, 0, 480);
m_screen->set_screen_update(FUNC(dpb7000_combiner_card_device::screen_update));
}