From a7d099d006df1f99c20f17b234f147e3f2856bdf Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 24 Apr 2005 18:50:31 +0000 Subject: [PATCH] simplify --- stepmania/src/ProfileManager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/ProfileManager.cpp b/stepmania/src/ProfileManager.cpp index 328a6e39e2..3f7b433be0 100644 --- a/stepmania/src/ProfileManager.cpp +++ b/stepmania/src/ProfileManager.cpp @@ -135,8 +135,7 @@ bool ProfileManager::LoadProfileFromMemoryCard( PlayerNumber pn ) CString sDir = MEM_CARD_MOUNT_POINT[pn]; // tack on a subdirectory so that we don't write everything to the root - sDir += PREFSMAN->m_sMemoryCardProfileSubdir; - sDir += '/'; + sDir += PREFSMAN->m_sMemoryCardProfileSubdir + "/"; bool bSuccess; bSuccess = LoadProfile( pn, sDir, true );