Fixed another warning in cdrom/cdrom.c.

This commit is contained in:
OBattler
2023-01-10 04:15:29 +01:00
parent db55912a63
commit 54d862d0b7

View File

@@ -1618,6 +1618,9 @@ cdrom_readsector_raw(cdrom_t *dev, uint8_t *buffer, int sector, int ismsf, int c
lba = bcd2bin((sector >> 24) & 0xff);
msf = sector;
break;
/* Never used values but the compiler complains. */
default:
lba = msf = 0;
}
}