terra cresta fix: insert coin -> coin counter not insert coin -> flip screen

This commit is contained in:
dinkc64 2015-01-06 08:27:43 +00:00
parent e43d6981d6
commit 2e7fb92ca0
1 changed files with 2 additions and 2 deletions

View File

@ -757,7 +757,7 @@ void __fastcall Terracre68KWriteWord(UINT32 a, UINT16 d)
{
switch (a) {
case 0x026000: {
DrvFlipScreen = d;
DrvFlipScreen = d & 0x04;
return;
}
@ -878,7 +878,7 @@ void __fastcall Amazon68KWriteWord(UINT32 a, UINT16 d)
{
switch (a) {
case 0x046000: {
DrvFlipScreen = d;
DrvFlipScreen = d & 0x04;
return;
}