summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Wilbert Pol <wilbert@jdg.info>2013-02-21 19:27:17 +0000
committer Wilbert Pol <wilbert@jdg.info>2013-02-21 19:27:17 +0000
commit0bd44ef97909589fa782db93e16c894790ac4519 (patch)
tree50babc6842beb0c6d2e6a5f10448a0866e691f7f /src
parentefcb34f14dd0400acca39fa1268ca87ee3a684fa (diff)
(MESS) odyssey2.c: Slightly better alignment between the 2 graphics chips in the g7400. (nw)
Diffstat (limited to 'src')
-rw-r--r--src/mess/drivers/odyssey2.c4
1 files 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 );