Update MD.ino

Fix Slaughter Sport's title and folder name
This commit is contained in:
Don Jones 2024-04-21 02:08:30 -04:00 committed by GitHub
parent 7fc0f9b154
commit dc1e776b19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions

View File

@ -1239,6 +1239,12 @@ void getCartInfo_MD() {
}
romName[copyToRomName_MD(romName, sdBuffer, sizeof(romName) - 1)] = 0;
//Check for Slaughter Sport
if (!strncmp("GMT5604600jJ", romName, 12) && (chksum == 0xFFFF)) {
strcpy(romName, "SLAUGHTERSPORT");
chksum = 0x6BAE;
}
//Get Lock-on cart name
if (SnKmode >= 2) {
char romNameLockon[12];