Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle Slaughter Sport title, update CRC32s #930

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Cart_Reader/MD.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1238,6 +1238,12 @@ void getCartInfo_MD() {
sdBuffer[c + 1] = loByte;
}
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) {
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
Loading