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;