diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-11-17 15:34:32 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-11-17 15:34:32 +0100 |
commit | 876a2e2ba115f6f8afa45155c8c6ed90d10576de (patch) | |
tree | 71dd70d555831eba188210d522993f1f249e772d /src/crepe/facade | |
parent | b019b401c3a1de0ffea7e6776242ae73599651ef (diff) |
added functionality to example and added pictures
Diffstat (limited to 'src/crepe/facade')
-rw-r--r-- | src/crepe/facade/SDLContext.cpp | 4 |
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), }; |