diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-09 14:14:11 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-09 14:14:11 +0100 |
commit | 65747afc0dadd7f0d9d93f1d0984f442c11eec82 (patch) | |
tree | 553691ec8fdb71cf23992ad3d9dd431241cef892 /src/crepe/facade | |
parent | b7127b9f389179f6f3cc2f903c7a8e898834bd96 (diff) |
resize/move tests working
Diffstat (limited to 'src/crepe/facade')
-rw-r--r-- | src/crepe/facade/SDLContext.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/crepe/facade/SDLContext.cpp b/src/crepe/facade/SDLContext.cpp index b761ca1..ce8218a 100644 --- a/src/crepe/facade/SDLContext.cpp +++ b/src/crepe/facade/SDLContext.cpp @@ -7,8 +7,6 @@ #include <SDL2/SDL_surface.h> #include <SDL2/SDL_video.h> -#include <iostream> - #include <array> #include <cmath> #include <cstddef> @@ -443,7 +441,6 @@ void SDLContext::handle_window_event(const SDL_WindowEvent& window_event, event_list.push_back({SDLContext::EventType::WINDOW_EXPOSE, {}, {}, {}}); break; case SDL_WINDOWEVENT_RESIZED: - std::cout << "window resize" << std::endl; event_list.push_back({SDLContext::EventType::WINDOW_RESIZE, {}, {}, {{}, {window_event.data1, window_event.data2}}}); break; |