diff --git a/zsnes/src/win/winlink.cpp b/zsnes/src/win/winlink.cpp index ab5ac332..39279d87 100644 --- a/zsnes/src/win/winlink.cpp +++ b/zsnes/src/win/winlink.cpp @@ -3145,10 +3145,7 @@ void DisplayWIPDisclaimer() if (CurrentBuildNum != PrevBuildNum) { - char text[1024]; - 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); + 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); PrevBuildNum = CurrentBuildNum; } }