Silence clang warnings (-Wbitwise-op-parentheses)

This commit is contained in:
retro-wertz
2019-05-30 23:09:39 +08:00
parent 897221a503
commit 1c0d0192d1
4 changed files with 18 additions and 18 deletions

View File

@@ -28,7 +28,7 @@
#include "mmc3.h"
static void M224PW(uint32 A, uint8 V) {
setprg8(A, V & 0x3f | (EXPREGS[0] << 4) & 0x40);
setprg8(A, (V & 0x3f) | ((EXPREGS[0] << 4) & 0x40));
}
static DECLFW(Mapper224Write) {