aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2024-11-17 15:34:32 +0100
committerJAROWMR <jarorutjes07@gmail.com>2024-11-17 15:34:32 +0100
commit876a2e2ba115f6f8afa45155c8c6ed90d10576de (patch)
tree71dd70d555831eba188210d522993f1f249e772d /src/crepe/facade
parentb019b401c3a1de0ffea7e6776242ae73599651ef (diff)
added functionality to example and added pictures
Diffstat (limited to 'src/crepe/facade')
-rw-r--r--src/crepe/facade/SDLContext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/facade/SDLContext.cpp b/src/crepe/facade/SDLContext.cpp
index 236bf8c..274cd7a 100644
--- a/src/crepe/facade/SDLContext.cpp
+++ b/src/crepe/facade/SDLContext.cpp
@@ -130,8 +130,8 @@ void SDLContext::draw(const Sprite & sprite, const Transform & transform,
};
SDL_Rect dstrect = {
- .x = static_cast<int>(adjusted_x),
- .y = static_cast<int>(adjusted_y),
+ .x = static_cast<int>(adjusted_x/2),
+ .y = static_cast<int>(adjusted_y/2),
.w = static_cast<int>(adjusted_w),
.h = static_cast<int>(adjusted_h),
};