Fix a tiny bug (nw)

This commit is contained in:
Wilbert Pol 2012-12-30 22:08:47 +00:00
parent 67c211dd92
commit 876916f548

View File

@ -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;
}