fix warning

This commit is contained in:
Glenn Maynard
2005-09-04 05:27:11 +00:00
parent fa2fa3d526
commit 5dd7b77246
+1 -1
View File
@@ -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