From 2bd72455080409f1d9ecc6c5576f58c1ff093c3f Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 9 Dec 2015 20:22:42 +0100 Subject: [PATCH] DrawTextureRec() function review to allow flipped rectangle --- src/textures.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textures.c b/src/textures.c index 27046b613..f97812dad 100644 --- a/src/textures.c +++ b/src/textures.c @@ -1206,7 +1206,7 @@ void DrawTextureEx(Texture2D texture, Vector2 position, float rotation, float sc // Draw a part of a texture (defined by a rectangle) void DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position, Color tint) { - Rectangle destRec = { (int)position.x, (int)position.y, sourceRec.width, sourceRec.height }; + Rectangle destRec = { (int)position.x, (int)position.y, abs(sourceRec.width), abs(sourceRec.height) }; Vector2 origin = { 0, 0 }; DrawTexturePro(texture, sourceRec, destRec, origin, 0.0f, tint);