Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
SirBob01 committed Oct 16, 2023
1 parent 1e533a2 commit e013271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ppu.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ unsigned char read_status_ppu(ppu_t *ppu) {
}

unsigned char read_oamdata_ppu(ppu_t *ppu) {
unsigned char result = ppu->primary_oam[ppu->oamaddr];
unsigned char result = read_primary_oam_ppu(ppu, ppu->oamaddr);
if ((ppu->oamaddr % 4) == 2) {
result &= 0xE3;
}
Expand Down

0 comments on commit e013271

Please sign in to comment.