Silence clang warnings

This commit is contained in:
retro-wertz
2019-06-25 16:56:05 +08:00
parent afaa5eab6c
commit 0cb1c866a1
4 changed files with 7 additions and 7 deletions

View File

@@ -35,7 +35,7 @@ static SFORMAT StateRegs[] =
static void Sync(void) {
if (mode & 0x02)
setprg16(0x8000, regs[0] & 0x0F | regs[1] & 0x70);
setprg16(0x8000, (regs[0] & 0x0F) | (regs[1] & 0x70));
else
setprg16r(1, 0x8000, regs[0] & 0x03);
setprg16(0xC000, regs[1]);