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(); clear();
InfoScreen_draw(this); InfoScreen_draw(this);
break; break;
case 'q':
case 27: case 27:
case 'q':
case KEY_F(10): case KEY_F(10):
looping = false; looping = false;
break; break;

View File

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