Fix warning.

This commit is contained in:
Steve Checkoway
2005-10-30 09:44:25 +00:00
parent 90891ad511
commit eea687a01a
+1 -1
View File
@@ -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 = "";
}