From c24fefa91a1416a4dad7fd97d67cefa51f9eb97c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 29 Apr 2014 20:20:48 +0300 Subject: Add type defines for SDL_Rect based on SDL version. --- src/render/graphics.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/render/graphics.cpp') 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(mWidth); + mRect.h = static_cast(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(w1 / mScale); + mRect.h = static_cast(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(width / mScale); + mRect.h = static_cast(height / mScale); mWidth = width / mScale; mHeight = height / mScale; mActualWidth = width; -- cgit v1.2.3-60-g2f50