From 48aaba8560d5c9ad53a0c04ed432cd91d6a32225 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 29 Apr 2013 23:37:45 -0400 Subject: [PATCH] Explicitly call ToString(). libc++ requires this. --- src/ProfileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProfileManager.cpp b/src/ProfileManager.cpp index ecf59bb9c2..02312fa381 100644 --- a/src/ProfileManager.cpp +++ b/src/ProfileManager.cpp @@ -207,7 +207,7 @@ bool ProfileManager::LoadLocalProfileFromMachine( PlayerNumber pn ) void ProfileManager::GetMemoryCardProfileDirectoriesToTry( vector &asDirsToTry ) { /* Try to load the preferred profile. */ - asDirsToTry.push_back( PREFSMAN->m_sMemoryCardProfileSubdir ); + asDirsToTry.push_back( PREFSMAN->m_sMemoryCardProfileSubdir.ToString() ); /* If that failed, try loading from all fallback directories. */ split( g_sMemoryCardProfileImportSubdirs, ";", asDirsToTry, true );