Skip to content

Commit

Permalink
Fix the two highest bits on undefined TIA reads.
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyHairy committed Jan 9, 2018
1 parent 2d6cd36 commit 3e50525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/machine/stella/tia/Tia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class Tia implements VideoOutputInterface {
break;

default:
result = lastDataBusValue;
result = 0;
break;
}

Expand Down

0 comments on commit 3e50525

Please sign in to comment.