diff options
author | 2018-04-03 22:05:39 -0500 | |
---|---|---|
committer | 2018-04-03 22:05:39 -0500 | |
commit | d16497ea885779e1397a98248f418e7e9d32c8aa (patch) | |
tree | c34800f7dd9572216928014308ba0db14baf18b6 /src/devices/video/scn2674.cpp | |
parent | 7d96346c6a9e997e647ab6a943f5230ba6a7dc38 (diff) |
scn2674: in row table mode double size in cached in screen start 1 (nw)
Diffstat (limited to 'src/devices/video/scn2674.cpp')
-rw-r--r-- | src/devices/video/scn2674.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/scn2674.cpp b/src/devices/video/scn2674.cpp index 726450ee7f6..0e20a243f73 100644 --- a/src/devices/video/scn2674.cpp +++ b/src/devices/video/scn2674.cpp @@ -978,7 +978,7 @@ void scn2674_device::device_timer(emu_timer &timer, device_timer_id id, int para if (m_use_row_table) { if (m_double_ht_wd) - dw = m_dbl1; + dw = m_screen1_address >> 14; if (!charrow) { uint16_t addr = m_screen2_address; |