From 0bd44ef97909589fa782db93e16c894790ac4519 Mon Sep 17 00:00:00 2001 From: Wilbert Pol Date: Thu, 21 Feb 2013 19:27:17 +0000 Subject: [PATCH] (MESS) odyssey2.c: Slightly better alignment between the 2 graphics chips in the g7400. (nw) --- src/mess/drivers/odyssey2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mess/drivers/odyssey2.c b/src/mess/drivers/odyssey2.c index 1f9b1df9393..92c49a0ce6e 100644 --- a/src/mess/drivers/odyssey2.c +++ b/src/mess/drivers/odyssey2.c @@ -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 );