Skip to content

Commit

Permalink
Merge pull request #932 from PsychoFox11/master
Browse files Browse the repository at this point in the history
Fix Slaughter Sport title, two CRC32s
  • Loading branch information
sanni authored Apr 22, 2024
2 parents 5a79277 + 8b61785 commit 5d0ae98
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Cart_Reader/MD.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down
4 changes: 2 additions & 2 deletions sd/md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2162,7 +2162,7 @@ ESPN Baseball Tonight (USA).md
96D8440C

ESPN National Hockey Night (USA).md
1D08828C
401DC618

ESPN National Hockey Night (USA) (Beta).md
A427814A
Expand Down Expand Up @@ -5843,7 +5843,7 @@ Slap Fight MD (Japan) (En) (Beta).md
DBB62949

Slaughter Sport (USA).md
AF9F9D9C
AAB2C6C4

Slime World (Japan).md
7FF5529F
Expand Down

0 comments on commit 5d0ae98

Please sign in to comment.