From 876916f54811b0367fdb8a51d6bf1300234021c5 Mon Sep 17 00:00:00 2001 From: Wilbert Pol Date: Sun, 30 Dec 2012 22:08:47 +0000 Subject: [PATCH] Fix a tiny bug (nw) --- src/mess/video/odyssey2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/video/odyssey2.c b/src/mess/video/odyssey2.c index 67a8c70554c..553ceeb5932 100644 --- a/src/mess/video/odyssey2.c +++ b/src/mess/video/odyssey2.c @@ -731,7 +731,7 @@ UINT16 odyssey2_state::ef9340_get_c_addr(UINT8 x, UINT8 y) } if ( x & 0x20 ) { - return 0x380 | ( ( y & 0x07 ) << 5 ) | ( y & 0x18 ) | ( x & 0x07 ); + return 0x300 | ( ( y & 0x07 ) << 5 ) | ( y & 0x18 ) | ( x & 0x07 ); } return y << 5 | x; }