From ad5d82cc0cf4a406b971a062d1db0c35509f0c42 Mon Sep 17 00:00:00 2001 From: n-a-c-h <> Date: Tue, 14 Feb 2006 21:54:46 +0000 Subject: [PATCH] Oops. Removing debug code that I commited by mistake. --- zsnes/src/win/winlink.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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; } }