Oops. Removing debug code that I commited by mistake.

This commit is contained in:
n-a-c-h
2006-02-14 21:54:46 +00:00
parent 6d37656f82
commit ad5d82cc0c

View File

@@ -3145,10 +3145,7 @@ void DisplayWIPDisclaimer()
if (CurrentBuildNum != PrevBuildNum) if (CurrentBuildNum != PrevBuildNum)
{ {
char text[1024]; MessageBox(NULL, "This build of ZSNES is a WORK IN PROGRESS. This means that it is known to contain bugs and certain features\nmay or may not be working correctly. This build is not any representation of final work and is provided AS IS\nfor people to try bleeding edge code.\n\nPlease see http://zsnes.game-host.org/~pagefault/ for a list of current issues.", "Disclaimer", MB_OK);
sprintf(text, "%s Current: %x; Old: %x\n", "This build of ZSNES is a WORK IN PROGRESS. This means that it is known to contain bugs and certain features\nmay or may not be working correctly. This build is not any representation of final work and is provided AS IS\nfor people to try bleeding edge code.\n\nPlease see http://zsnes.game-host.org/~pagefault/ for a list of current issues.", CurrentBuildNum, PrevBuildNum);
MessageBox(NULL, text, "Disclaimer", MB_OK);
PrevBuildNum = CurrentBuildNum; PrevBuildNum = CurrentBuildNum;
} }
} }