summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--InfoScreen.c2
-rw-r--r--ScreenManager.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/InfoScreen.c b/InfoScreen.c
index eaf351d3..ceb29f74 100644
--- a/InfoScreen.c
+++ b/InfoScreen.c
@@ -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;
diff --git a/ScreenManager.c b/ScreenManager.c
index 87746c7e..ac93721d 100644
--- a/ScreenManager.c
+++ b/ScreenManager.c
@@ -296,9 +296,9 @@ tryRight:
}
break;
- case KEY_F(10):
- case 'q':
case 27:
+ case 'q':
+ case KEY_F(10):
quit = true;
continue;
default: