From 744f5d9c8b976a431dcb5417a520c0c709b17fbe Mon Sep 17 00:00:00 2001 From: libretroadmin Date: Sat, 20 Jul 2024 19:55:33 +0200 Subject: [PATCH] Buildfix --- src/boards/inx007t.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boards/inx007t.c b/src/boards/inx007t.c index 648fa0b..db833d9 100644 --- a/src/boards/inx007t.c +++ b/src/boards/inx007t.c @@ -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); }