From 545da7424b97eff1a0c4b8a614d64549486f089f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 20 Jun 2007 22:25:57 +0000 Subject: [PATCH] fix UnlockAuthString --- stepmania/src/Profile.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stepmania/src/Profile.cpp b/stepmania/src/Profile.cpp index 17c1bcc9d6..3cb24e90f8 100644 --- a/stepmania/src/Profile.cpp +++ b/stepmania/src/Profile.cpp @@ -41,7 +41,7 @@ const RString EDIT_COURSES_SUBDIR = "EditCourses/"; ThemeMetric SHOW_COIN_DATA( "Profile", "ShowCoinData" ); static Preference g_bProfileDataCompress( "ProfileDataCompress", false ); static Preference g_bCopyCatalogToProfiles( "CopyCatalogToProfiles", true ); -static Preference UNLOCK_AUTH_STRING( "Profile", "UnlockAuthString" ); +static ThemeMetric UNLOCK_AUTH_STRING( "Profile", "UnlockAuthString" ); #define GUID_SIZE_BYTES 8 @@ -1106,9 +1106,9 @@ XNode* Profile::SaveGeneralDataCreateNode() const XNode *pEntry = pUnlocks->AppendChild("UnlockEntry"); RString sUnlockEntry = it->c_str(); pEntry->AppendAttr( "UnlockEntryID", sUnlockEntry ); - if( !UNLOCK_AUTH_STRING.Get().empty() ) + if( !UNLOCK_AUTH_STRING.GetValue().empty() ) { - RString sUnlockAuth = BinaryToHex( CRYPTMAN->GetMD5ForString(sUnlockEntry + UNLOCK_AUTH_STRING.Get()) ); + RString sUnlockAuth = BinaryToHex( CRYPTMAN->GetMD5ForString(sUnlockEntry + UNLOCK_AUTH_STRING.GetValue()) ); pEntry->AppendAttr( "Auth", sUnlockAuth ); } } @@ -1281,13 +1281,13 @@ void Profile::LoadGeneralDataFromNode( const XNode* pNode ) if( !unlock->GetAttrValue("UnlockEntryID",sUnlockEntryID) ) continue; - if( !UNLOCK_AUTH_STRING.Get().empty() ) + if( !UNLOCK_AUTH_STRING.GetValue().empty() ) { RString sUnlockAuth; if( !unlock->GetAttrValue("Auth", sUnlockAuth) ) continue; - RString sExpectedUnlockAuth = BinaryToHex( CRYPTMAN->GetMD5ForString(sUnlockEntryID + UNLOCK_AUTH_STRING.Get()) ); + RString sExpectedUnlockAuth = BinaryToHex( CRYPTMAN->GetMD5ForString(sUnlockEntryID + UNLOCK_AUTH_STRING.GetValue()) ); if( sUnlockAuth != sExpectedUnlockAuth ) continue; }