From 6113fb3a903a2fb375fc3dc02ac95244ac7c0cfb Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 22 Apr 2005 05:11:41 +0000 Subject: [PATCH] fix warning --- stepmania/src/ScreenEdit.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index e489f13234..ee0845b137 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -2720,8 +2720,7 @@ void ScreenEdit::CheckNumberOfNotesAndUndo() { Undo(); CString sError = ssprintf( - "This change creates notes past the end of the music and is not allowed.\n\nThe change has been reverted.", - MAX_NOTES_PER_MEASURE, MAX_NOTES_PER_MEASURE ); + "This change creates notes past the end of the music and is not allowed.\n\nThe change has been reverted." ); SCREENMAN->Prompt( SM_None, sError ); return; }