Common order for ESC/q/F10

This commit is contained in:
Benny Baumann 2020-11-21 16:59:38 +01:00 committed by BenBE
parent 4f08d2d5ad
commit c49ca61dd9
2 changed files with 3 additions and 3 deletions

View File

@ -144,8 +144,8 @@ void InfoScreen_run(InfoScreen* this) {
clear();
InfoScreen_draw(this);
break;
case 'q':
case 27:
case 'q':
case KEY_F(10):
looping = false;
break;

View File

@ -296,9 +296,9 @@ tryRight:
}
break;
case KEY_F(10):
case 'q':
case 27:
case 'q':
case KEY_F(10):
quit = true;
continue;
default: