Merge pull request #2891 from rzero9/patch-5

fmtowns: fixed 16-bit color scrolling a bit more
This commit is contained in:
R. Belmont 2017-12-04 21:08:11 -05:00 committed by GitHub
commit e72b22a3b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -959,7 +959,7 @@ void towns_state::towns_crtc_draw_scan_layer_hicolour(bitmap_rgb32 &bitmap,const
off += scroll; off += scroll;
} }
hzoom = ((m_video.towns_crtc_reg[27] & 0x0f00) >> 8) + 1; hzoom = ((m_video.towns_crtc_reg[27] & 0x0f00) >> 8) + 1;
off += (m_video.towns_crtc_reg[11] - m_video.towns_crtc_reg[22]) * (hzoom * 2); off += (m_video.towns_crtc_reg[11] - m_video.towns_crtc_reg[22]) * (2 >> (hzoom - 1));
} }
else else
{ {
@ -971,7 +971,7 @@ void towns_state::towns_crtc_draw_scan_layer_hicolour(bitmap_rgb32 &bitmap,const
off += scroll; off += scroll;
} }
hzoom = (m_video.towns_crtc_reg[27] & 0x000f) + 1; hzoom = (m_video.towns_crtc_reg[27] & 0x000f) + 1;
off += (m_video.towns_crtc_reg[9] - m_video.towns_crtc_reg[18]) * (hzoom * 2); off += (m_video.towns_crtc_reg[9] - m_video.towns_crtc_reg[18]) * (2 >> (hzoom - 1));
} }
off += line * linesize; off += line * linesize;