mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
Fix another tiny bug (nw)
This commit is contained in:
parent
876916f548
commit
6731260b78
@ -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 );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user