diff options
author | 2016-11-03 17:53:30 +0000 | |
---|---|---|
committer | 2016-11-03 19:21:22 +0000 | |
commit | 87490d481514100d5cb7a8f4773a7bb415ce6fe5 (patch) | |
tree | 4938a4d2302fe24f25b154ddef9f89041a0e694e /src/devices/video/huc6261.cpp | |
parent | e125186e15dad8729c59b9073566ab191befc8a8 (diff) |
replaced machine().driver_data()->generic_space() with machine().dummy_space() (nw)
Diffstat (limited to 'src/devices/video/huc6261.cpp')
-rw-r--r-- | src/devices/video/huc6261.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/huc6261.cpp b/src/devices/video/huc6261.cpp index 91e02b86654..ddd11783131 100644 --- a/src/devices/video/huc6261.cpp +++ b/src/devices/video/huc6261.cpp @@ -84,7 +84,7 @@ void huc6261_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_huc6270_b->next_pixel( machine().driver_data()->generic_space(), 0, 0xffff ); + m_pixel_data = m_huc6270_b->next_pixel( machine().dummy_space(), 0, 0xffff ); g_profiler.stop(); } |