diff options
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(); } |