summaryrefslogtreecommitdiff
path: root/games-roguelike/scourge/files/scourge-0.21.1-Wc++11-narrowing.patch
blob: a852248c9fc232b40b940ec873f3b5e9ad378a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Allow compiling with Clang
https://bugs.gentoo.org/739330

--- a/src/sdlhandler.cpp
+++ b/src/sdlhandler.cpp
@@ -1034,10 +1034,10 @@
 bool SDLHandler::intersects( int x, int y, int w, int h,
                              int x2, int y2, int w2, int h2 ) {
 	SDL_Rect ra = {
-		x, y, w, h
+		static_cast<Sint16>(x), static_cast<Sint16>(y), static_cast<Uint16>(w), static_cast<Uint16>(h)
 	};
 	SDL_Rect rb = {
-		x2, y2, w2, h2
+		static_cast<Sint16>(x2), static_cast<Sint16>(y2), static_cast<Uint16>(w2), static_cast<Uint16>(h2)
 	};
 	return intersects( &ra, &rb );
 }