(MESS) odyssey2.c: Slightly better alignment between the 2 graphics chips in the g7400. (nw)

This commit is contained in:
Wilbert Pol 2013-02-21 19:27:17 +00:00
parent efcb34f14d
commit 0bd44ef979

View File

@ -528,8 +528,8 @@ WRITE16_MEMBER(g7400_state::scanline_postprocess)
}
// apply external LUM setting
int x_real_start = i8244_device::START_ACTIVE_SCAN + i8244_device::BORDER_SIZE + 2;
int x_real_end = i8244_device::END_ACTIVE_SCAN - i8244_device::BORDER_SIZE + 2;
int x_real_start = i8244_device::START_ACTIVE_SCAN + i8244_device::BORDER_SIZE + 5;
int x_real_end = i8244_device::END_ACTIVE_SCAN - i8244_device::BORDER_SIZE + 5;
for ( int x = i8244_device::START_ACTIVE_SCAN; x < i8244_device::END_ACTIVE_SCAN; x++ )
{
UINT16 d = bitmap->pix16( vpos, x );