diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-04 17:12:21 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-04 17:12:21 +0100 |
commit | b0a7296eb4319d123c88b34f162c28d0717c98e4 (patch) | |
tree | 3afe48156339f8ca5ff72d6f288ac6269303ce3f | |
parent | 4e98ad053942a47e1f3f236702012c5ffd5852eb (diff) |
last changes
-rw-r--r-- | src/crepe/system/InputSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/system/InputSystem.cpp b/src/crepe/system/InputSystem.cpp index a95ae1d..11749e1 100644 --- a/src/crepe/system/InputSystem.cpp +++ b/src/crepe/system/InputSystem.cpp @@ -37,7 +37,7 @@ void InputSystem::update() { || world_mouse_x > camera_origin_x + current_cam.viewport_size.x || world_mouse_y < camera_origin_y || world_mouse_y > camera_origin_y + current_cam.viewport_size.y); - + switch (event.event_type) { case SDLContext::EventType::KEYDOWN: event_mgr.queue_event<KeyPressEvent>(KeyPressEvent{ |