- another keyboard bugfix (pressing esc properly cancels chat mode), Thanks ultifd

This commit is contained in:
Mark Vejvoda
2011-03-12 03:10:07 +00:00
parent 9d2e08a8c7
commit f88836203a
3 changed files with 3 additions and 4 deletions

View File

@@ -187,7 +187,7 @@ void Program::keyDown(char key){
if(msgBox.getEnabled()) {
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
if(key == vkEscape || key == vkReturn) {
if(key == vkEscape || key == SDLK_ESCAPE || key == vkReturn || key == SDLK_RETURN || key == SDLK_KP_ENTER) {
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
msgBox.setEnabled(false);