Fix warnings [-Wimplicit-fallthrough=]

This commit is contained in:
negativeExponent
2020-10-21 20:55:08 +08:00
parent 99c0d8351f
commit e0cb4d2814
4 changed files with 7 additions and 4 deletions

View File

@@ -250,10 +250,10 @@ static DECLFW(UNLSL12Write) {
mmc1_regs[n] = mmc1_buffer;
mmc1_buffer = mmc1_shift = 0;
switch (n) {
case 0: SyncMIR();
case 2: SyncCHR();
case 0: SyncMIR(); break;
case 2: SyncCHR(); break;
case 3:
case 1: SyncPRG();
case 1: SyncPRG(); break;
}
}
}