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.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/render/graphics.h') diff --git a/src/render/graphics.h b/src/render/graphics.h index 49080f4de..541bb789d 100644 --- a/src/render/graphics.h +++ b/src/render/graphics.h @@ -85,6 +85,14 @@ #include "localconsts.h" +#ifdef USE_SDL2 +#define RectPos int32_t +#define RectSize int32_t +#else +#define RectPos int16_t +#define RectSize uint16_t +#endif + class Image; class ImageCollection; class ImageVertexes; @@ -165,8 +173,8 @@ class Graphics const int width, const int height) { mWindow = window; - mRect.w = width; - mRect.h = height; + mRect.w = static_cast(width); + mRect.h = static_cast(height); } SDL_Window *getWindow() const -- cgit v1.2.3-60-g2f50