Fix warning about misleading indentation

This commit is contained in:
LibretroAdmin
2022-09-05 01:29:39 +02:00
parent f7c1b002ee
commit 27130037ae

View File

@@ -72,7 +72,11 @@ static DECLFW(UNLTF1201Write) {
int sar = ((A & 2) << 1);
chr[ind] = (chr[ind] & (0xF0 >> sar)) | ((V & 0x0F) << sar);
SyncChr();
} else switch (A & 0xF003) {
}
else
{
switch (A & 0xF003)
{
case 0x8000: prg0 = V; SyncPrg(); break;
case 0xA000: prg1 = V; SyncPrg(); break;
case 0x9000: mirr = V & 1; SyncChr(); break;
@@ -83,6 +87,7 @@ static DECLFW(UNLTF1201Write) {
case 0xF003: IRQa = V & 2; X6502_IRQEnd(FCEU_IQEXT); if (scanline < 240) IRQCount -= 8; break;
}
}
}
static void UNLTF1201IRQCounter(void) {
if (IRQa) {