diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-01-30 14:44:58 -0500 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-01-30 14:44:58 -0500 |
commit | b9fe1b45127085d8a7c664245dd070afd8cbf3b4 (patch) | |
tree | 7d2752132d8e634ef89b6c992da68eba932c5763 | |
parent | 8a38699f399103d4ee003e6eb63dd62656115be2 (diff) | |
download | tanetane-b9fe1b45127085d8a7c664245dd070afd8cbf3b4.tar.gz tanetane-b9fe1b45127085d8a7c664245dd070afd8cbf3b4.tar.bz2 tanetane-b9fe1b45127085d8a7c664245dd070afd8cbf3b4.zip |
ESC quits the game now
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 83f63e0..9d889f2 100644 --- a/src/main.cpp +++ b/src/main.cpp | |||
@@ -31,7 +31,7 @@ void loop(Renderer& renderer) { | |||
31 | 31 | ||
32 | SDL_Event e; | 32 | SDL_Event e; |
33 | while (SDL_PollEvent(&e)) { | 33 | while (SDL_PollEvent(&e)) { |
34 | if (e.type == SDL_QUIT) { | 34 | if (e.type == SDL_QUIT || (e.type == SDL_KEYDOWN && e.key.keysym.sym == SDLK_ESCAPE)) { |
35 | return; | 35 | return; |
36 | } | 36 | } |
37 | } | 37 | } |