fix warning
This commit is contained in:
@@ -190,7 +190,7 @@ void ScreenTextEntry::UpdateAnswerText()
|
|||||||
s += '*';
|
s += '*';
|
||||||
}
|
}
|
||||||
|
|
||||||
bool bAnswerFull = s.length() >= g_iMaxInputLength;
|
bool bAnswerFull = (int) s.length() >= g_iMaxInputLength;
|
||||||
if( m_bShowAnswerCaret && !bAnswerFull )
|
if( m_bShowAnswerCaret && !bAnswerFull )
|
||||||
s += '_';
|
s += '_';
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user