diff --git a/src/Configuration.cpp b/src/Configuration.cpp index 631fa49..b44d4b2 100644 --- a/src/Configuration.cpp +++ b/src/Configuration.cpp @@ -26,7 +26,6 @@ void Configuration::set_defaults() {"right", "right"}, {"down", "down"}, {"left", "left"}, - {"pause", "enter"}, {"fullscreen", {"ALT", "enter"}}, {"reset", {"CTRL", "r"}} }; diff --git a/src/Input.hpp b/src/Input.hpp index 4d9f1ef..02d06ae 100644 --- a/src/Input.hpp +++ b/src/Input.hpp @@ -51,7 +51,8 @@ private: {"f11", SDLK_F11}, {"f12", SDLK_F11}, {"enter", SDLK_RETURN}, - {"space", SDLK_SPACE} + {"space", SDLK_SPACE}, + {"escape", SDLK_ESCAPE} }; std::vector key_map; bool suppressed = false;