diff --git a/stepmania/src/ProfileManager.cpp b/stepmania/src/ProfileManager.cpp index 823cdcc7ce..733805e56d 100644 --- a/stepmania/src/ProfileManager.cpp +++ b/stepmania/src/ProfileManager.cpp @@ -30,7 +30,7 @@ ProfileManager* PROFILEMAN = NULL; // global and accessable from anywhere in our static void DefaultLocalProfileIDInit( size_t /*PlayerNumber*/ i, CString &sNameOut, CString &defaultValueOut ) { - sNameOut = ssprintf( "DefaultLocalProfileIDP%d", i+1 ); + sNameOut = ssprintf( "DefaultLocalProfileIDP%d", int(i+1) ); defaultValueOut = ""; }