diff --git a/stepmania/src/ScreenTextEntry.cpp b/stepmania/src/ScreenTextEntry.cpp index cc97dbdebc..6177468829 100644 --- a/stepmania/src/ScreenTextEntry.cpp +++ b/stepmania/src/ScreenTextEntry.cpp @@ -190,7 +190,7 @@ void ScreenTextEntry::UpdateAnswerText() s += '*'; } - bool bAnswerFull = s.length() >= g_iMaxInputLength; + bool bAnswerFull = (int) s.length() >= g_iMaxInputLength; if( m_bShowAnswerCaret && !bAnswerFull ) s += '_'; else