aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-09 14:14:11 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-09 14:14:11 +0100
commit65747afc0dadd7f0d9d93f1d0984f442c11eec82 (patch)
tree553691ec8fdb71cf23992ad3d9dd431241cef892 /src/crepe/facade
parentb7127b9f389179f6f3cc2f903c7a8e898834bd96 (diff)
resize/move tests working
Diffstat (limited to 'src/crepe/facade')
-rw-r--r--src/crepe/facade/SDLContext.cpp3
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;