summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-30 15:36:37 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-30 15:36:37 +0300
commit90d0f4bb37f63199a50d712d01b73a0ec66af1c5 (patch)
treec54a02fff07526d1aea66b07adcc1a6d93e05bda
parent6872cb2a97571258e5b4ef863eccd8ceec00f58a (diff)
downloadplus-90d0f4bb37f63199a50d712d01b73a0ec66af1c5.tar.gz
plus-90d0f4bb37f63199a50d712d01b73a0ec66af1c5.tar.bz2
plus-90d0f4bb37f63199a50d712d01b73a0ec66af1c5.tar.xz
plus-90d0f4bb37f63199a50d712d01b73a0ec66af1c5.zip
Fix images drawing in software renderers.
-rw-r--r--src/render/sdl2softwaregraphics.cpp4
-rw-r--r--src/render/sdlgraphics.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/render/sdl2softwaregraphics.cpp b/src/render/sdl2softwaregraphics.cpp
index 7210e8bbf..c72dd5a7f 100644
--- a/src/render/sdl2softwaregraphics.cpp
+++ b/src/render/sdl2softwaregraphics.cpp
@@ -177,8 +177,8 @@ bool SDL2SoftwareGraphics::drawImage2(const Image *const image,
{
SDL_Rect srcRect =
{
- static_cast<int16_t>(0),
- static_cast<int16_t>(0),
+ static_cast<int16_t>(srcX),
+ static_cast<int16_t>(srcY),
static_cast<uint16_t>(w),
static_cast<uint16_t>(h)
};
diff --git a/src/render/sdlgraphics.cpp b/src/render/sdlgraphics.cpp
index 5680243ca..83bf989d2 100644
--- a/src/render/sdlgraphics.cpp
+++ b/src/render/sdlgraphics.cpp
@@ -170,8 +170,8 @@ bool SDLGraphics::drawImage2(const Image *const image,
{
SDL_Rect srcRect =
{
- static_cast<int16_t>(0),
- static_cast<int16_t>(0),
+ static_cast<int16_t>(srcX),
+ static_cast<int16_t>(srcY),
static_cast<uint16_t>(w),
static_cast<uint16_t>(h)
};