From eea687a01ac577a6faebdc4126a35dc666cf0ec3 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 30 Oct 2005 09:44:25 +0000 Subject: [PATCH] Fix warning. --- 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 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 = ""; }