diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-04-29 20:20:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-04-29 20:20:48 +0300 |
commit | c24fefa91a1416a4dad7fd97d67cefa51f9eb97c (patch) | |
tree | 4a8d894f6932dfcb95268121bed3c433c2461bd0 /src/render/graphics.cpp | |
parent | 03418ce78766b062ce5af7aaf99f7f2c62152b6b (diff) | |
download | plus-c24fefa91a1416a4dad7fd97d67cefa51f9eb97c.tar.gz plus-c24fefa91a1416a4dad7fd97d67cefa51f9eb97c.tar.bz2 plus-c24fefa91a1416a4dad7fd97d67cefa51f9eb97c.tar.xz plus-c24fefa91a1416a4dad7fd97d67cefa51f9eb97c.zip |
Add type defines for SDL_Rect based on SDL version.
Diffstat (limited to 'src/render/graphics.cpp')
-rw-r--r-- | src/render/graphics.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/render/graphics.cpp b/src/render/graphics.cpp index 3a423aac2..5437e6737 100644 --- a/src/render/graphics.cpp +++ b/src/render/graphics.cpp @@ -205,8 +205,8 @@ void Graphics::setScale(int scale) mWidth = mActualWidth; mHeight = mActualHeight; } - mRect.w = mWidth; - mRect.h = mHeight; + mRect.w = static_cast<RectSize>(mWidth); + mRect.h = static_cast<RectSize>(mHeight); } int Graphics::getOpenGLFlags() const @@ -261,8 +261,8 @@ bool Graphics::setOpenGLMode() int w1 = 0; int h1 = 0; SDL_GetWindowSize(mWindow, &w1, &h1); - mRect.w = w1 / mScale; - mRect.h = h1 / mScale; + mRect.w = static_cast<int32_t>(w1 / mScale); + mRect.h = static_cast<int32_t>(h1 / mScale); mGLContext = SDL_GL_CreateContext(mWindow); @@ -472,8 +472,8 @@ bool Graphics::resizeScreen(const int width, const int height) #ifdef USE_SDL2 endDraw(); - mRect.w = width / mScale; - mRect.h = height / mScale; + mRect.w = static_cast<int32_t>(width / mScale); + mRect.h = static_cast<int32_t>(height / mScale); mWidth = width / mScale; mHeight = height / mScale; mActualWidth = width; |