Skip to content

Commit

Permalink
Fix blocking VRAM conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
Francois CARON committed Nov 22, 2024
1 parent c891b97 commit baf885a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions yabause/src/sys/vdp2/src/vdp2.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ static int updateBlockedBank(int bank){
hasAccessState = 1;
break;
case 0xF:
// No Access
// if (hasWaitState) hasAccessState = 1;
// else
// No
if (hasWaitState || (!partitioned)) hasAccessState = 1;
else
hasWaitState = 1;
break;
case 0x8:
Expand Down

0 comments on commit baf885a

Please sign in to comment.