From e33c642403faaa98296a376a5fc2df19ff440997 Mon Sep 17 00:00:00 2001 From: Thad Ward Date: Sun, 22 Feb 2004 21:22:48 +0000 Subject: [PATCH] fix typo --- stepmania/src/ProfileManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ProfileManager.cpp b/stepmania/src/ProfileManager.cpp index ee285ebc78..00db447c4d 100644 --- a/stepmania/src/ProfileManager.cpp +++ b/stepmania/src/ProfileManager.cpp @@ -158,7 +158,7 @@ bool ProfileManager::LoadProfileFromMemoryCard( PlayerNumber pn ) CString sDir = MEM_CARD_DIR[pn]; - DEBUG_ASSERT( FILEMAN->IsMounted(sDir) ); // should be called only if we've already mousted + DEBUG_ASSERT( FILEMAN->IsMounted(sDir) ); // should be called only if we've already mounted // tack on a subdirectory so that we don't write everything to the root sDir += PREFSMAN->m_sMemoryCardProfileSubdir; @@ -182,7 +182,7 @@ bool ProfileManager::CreateMemoryCardProfile( PlayerNumber pn ) { CString sDir = MEM_CARD_DIR[pn]; - DEBUG_ASSERT( FILEMAN->IsMounted(sDir) ); // should be called only if we've already mousted + DEBUG_ASSERT( FILEMAN->IsMounted(sDir) ); // should be called only if we've already mounted // tack on a subdirectory so that we don't write everything to the root sDir += PREFSMAN->m_sMemoryCardProfileSubdir;