summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/huc6260.cpp
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2019-04-27 10:48:52 +0900
committer cam900 <dbtlrchl@naver.com>2019-04-27 10:48:52 +0900
commitaccb1558171daf8cc4b2c92cd708ecb89b5c89d5 (patch)
treeb0170c69827b05eecf6be0a82343a5aaed6a9130 /src/devices/video/huc6260.cpp
parentfbf688b976525eff61c4cd84816d4f80af04f61f (diff)
huc6270.cpp, huc6202.cpp : Simplify handlers
Diffstat (limited to 'src/devices/video/huc6260.cpp')
-rw-r--r--src/devices/video/huc6260.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/huc6260.cpp b/src/devices/video/huc6260.cpp
index 51908c181a6..293d2cbd8cf 100644
--- a/src/devices/video/huc6260.cpp
+++ b/src/devices/video/huc6260.cpp
@@ -77,7 +77,7 @@ void huc6260_device::device_timer(emu_timer &timer, device_timer_id id, int para
{
g_profiler.start( PROFILER_VIDEO );
/* Get next pixel information */
- m_pixel_data = m_next_pixel_data_cb( 0, 0xffff );
+ m_pixel_data = m_next_pixel_data_cb();
g_profiler.stop();
}
@@ -149,7 +149,7 @@ void huc6260_device::device_timer(emu_timer &timer, device_timer_id id, int para
/* Ask our slave device for time until next possible event */
{
- uint16_t next_event_clocks = m_time_til_next_event_cb( 0, 0xffff );
+ uint16_t next_event_clocks = m_time_til_next_event_cb();
int event_hpos, event_vpos;
/* Adjust for pixel clocks per pixel */