fix backsp on empty string crashes
This commit is contained in:
@@ -253,6 +253,11 @@ void ScreenTextEntry::AppendToAnswer( CString s )
|
|||||||
|
|
||||||
void ScreenTextEntry::BackspaceInAnswer()
|
void ScreenTextEntry::BackspaceInAnswer()
|
||||||
{
|
{
|
||||||
|
if( m_sAnswer.empty() )
|
||||||
|
{
|
||||||
|
SCREENMAN->PlayInvalidSound();
|
||||||
|
return;
|
||||||
|
}
|
||||||
m_sAnswer.erase( m_sAnswer.end()-1 );
|
m_sAnswer.erase( m_sAnswer.end()-1 );
|
||||||
m_sndBackspace.Play();
|
m_sndBackspace.Play();
|
||||||
UpdateAnswerText();
|
UpdateAnswerText();
|
||||||
|
|||||||
Reference in New Issue
Block a user