From 04ca7c496c6a763c45f22ac3a19dffe97e3ab8e5 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 1 May 2005 08:45:22 +0000 Subject: [PATCH] quit trying to load from fallbacks after the first successful load --- stepmania/src/ProfileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ProfileManager.cpp b/stepmania/src/ProfileManager.cpp index b0aa20bbb3..5c469a42bb 100644 --- a/stepmania/src/ProfileManager.cpp +++ b/stepmania/src/ProfileManager.cpp @@ -167,7 +167,7 @@ bool ProfileManager::LoadProfileFromMemoryCard( PlayerNumber pn ) Profile::LoadResult res = LoadProfile( pn, sDir, true ); if( res == Profile::success ) iLoadedFrom = i; - else if( res != Profile::failed_no_profile ) + if( res != Profile::failed_no_profile ) break; }