diff --git a/RSDKv3/Drawing.cpp b/RSDKv3/Drawing.cpp index 6ea33794..4b004ced 100644 --- a/RSDKv3/Drawing.cpp +++ b/RSDKv3/Drawing.cpp @@ -4810,7 +4810,7 @@ void SetFadeHQ(int R, int G, int B, int A) // Not Avaliable in HW mode } -void DrawTintRectangle(uint XPos, uint YPos, int width, int height) +void DrawTintRectangle(int XPos, int YPos, int width, int height) { if (renderType == RENDER_SW) { if (width + XPos > GFX_LINESIZE) diff --git a/RSDKv3/Drawing.hpp b/RSDKv3/Drawing.hpp index 1b4b654a..9b494c83 100644 --- a/RSDKv3/Drawing.hpp +++ b/RSDKv3/Drawing.hpp @@ -187,7 +187,7 @@ void Draw3DSkyLayer(int layerID); // Shape Drawing void DrawRectangle(int XPos, int YPos, int width, int height, int R, int G, int B, int A); void SetFadeHQ(int R, int G, int B, int A); -void DrawTintRectangle(uint XPos, uint YPos, int width, int height); +void DrawTintRectangle(int XPos, int YPos, int width, int height); void DrawScaledTintMask(int direction, int XPos, int YPos, int pivotX, int pivotY, int scaleX, int scaleY, int width, int height, int sprX, int sprY, int sheetID);