From 6731260b78b3d15e0b7cabdefc5282b010cf8262 Mon Sep 17 00:00:00 2001 From: Wilbert Pol Date: Sun, 30 Dec 2012 22:12:21 +0000 Subject: [PATCH] Fix another 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 553ceeb5932..079734d6285 100644 --- a/src/mess/video/odyssey2.c +++ b/src/mess/video/odyssey2.c @@ -725,7 +725,7 @@ STREAM_UPDATE( odyssey2_sh_update ) UINT16 odyssey2_state::ef9340_get_c_addr(UINT8 x, UINT8 y) { - if ( ( y & 0x0c ) == 0x0c ) + if ( ( y & 0x18 ) == 0x18 ) { return 0x318 | ( ( x & 0x38 ) << 2 ) | ( x & 0x07 ); }