Skip to content

Commit

Permalink
- Warn against broken shrinking tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
Extrems committed Dec 2, 2019
1 parent f7432de commit ec87a4e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cube/swiss/source/swiss.c
Original file line number Diff line number Diff line change
Expand Up @@ -1382,6 +1382,13 @@ void load_game() {
return;
}

if(curFile.size < DISC_SIZE && strncmp(&GCMDisk.GameName[0x1E0], "NKIT", 4)) {
DrawDispose(msgBox);
msgBox = DrawPublish(DrawMessageBox(D_WARN, "Disc shrunk using an unsupported tool.\nPlease use NKit."));
sleep(5);
DrawDispose(msgBox);
}

// Check that Audio streaming is really necessary before we patch anything for it
if(GCMDisk.AudioStreaming) {
print_gecko("Checking game for 32K files\r\n");
Expand Down

0 comments on commit ec87a4e

Please sign in to comment.