Skip to content

Commit

Permalink
Buildfix
Browse files Browse the repository at this point in the history
  • Loading branch information
LibretroAdmin committed Jul 20, 2024
1 parent 21651b9 commit 744f5d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boards/inx007t.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
static uint8 latch_out, latch_in;

static void INX_007T_Sync() {
setprg32(0x8000, (latch_in & 0b111) | (latch_out << 3));
setprg32(0x8000, (latch_in & 7) | (latch_out << 3));
setmirror(MI_0 + ((latch_in >> 4) & 1));
setchr8(0);
}
Expand Down

0 comments on commit 744f5d9

Please sign in to comment.