From fb8c64b3872eb3a3879dbb8657f521806126fbe9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 14 May 2004 05:45:46 +0000 Subject: [PATCH] crypto51 debug/release libraries were swapped always link to release; we can't be uploading a 6.5 meg debug .lib every time something in crypto51 changes --- stepmania/src/CryptManager.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stepmania/src/CryptManager.cpp b/stepmania/src/CryptManager.cpp index 48f08bb872..d83c6f61c8 100644 --- a/stepmania/src/CryptManager.cpp +++ b/stepmania/src/CryptManager.cpp @@ -16,11 +16,11 @@ using namespace CryptoPP; using namespace std; #ifdef WIN32 - #ifdef DEBUG - #pragma comment(lib, "crypto51\\Release\\cryptlib.lib") - #else - #pragma comment(lib, "crypto51\\Debug\\cryptlib.lib") - #endif +// #ifdef DEBUG +// #pragma comment(lib, "crypto51/Debug/cryptlib.lib") +// #else + #pragma comment(lib, "crypto51/Release/cryptlib.lib") +// #endif #endif static const CString PRIVATE_KEY_PATH = "Data/private.key.rsa";