From c14accb7257a70083e335e1327d797d2550b608b Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Sun, 3 Aug 2014 00:08:58 -0400 Subject: [PATCH] Should use escape define --- source/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/input.c b/source/input.c index 59547a8..2f300cc 100644 --- a/source/input.c +++ b/source/input.c @@ -116,7 +116,7 @@ void input_handle_key(char ch) { } /* Escape key puts us back into normal mode */ - if (ch == 27u) + if (ch == ESC) { Key_Buffer[0] = '\0'; state_set_mode(MODE_NORMAL); -- 2.54.0