PSEUDOKEY_RELEASE no longer exits dialogs

This commit is contained in:
Zeno Rogue 2018-01-05 14:16:48 +01:00
parent ac4fb65d30
commit dd2a99b920
1 changed files with 1 additions and 0 deletions

View File

@ -208,6 +208,7 @@ bool quitmainloop = false;
bool doexiton(int sym, int uni) {
if(sym == SDLK_ESCAPE) return true;
if(sym == SDLK_F10) return true;
if(sym == PSEUDOKEY_RELEASE) return false;
if(uni != 0) return true;
return false;
}