Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
LittlePlanetCD committed May 28, 2024
2 parents 9087b33 + 820b9cc commit 8c70049
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RSDKv4/Drawing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2756,7 +2756,7 @@ void SetFadeHQ(int R, int G, int B, int A)
#endif
}

void DrawTintRectangle(uint XPos, uint YPos, int width, int height)
void DrawTintRectangle(int XPos, int YPos, int width, int height)
{
#if RETRO_SOFTWARE_RENDER
if (width + XPos > GFX_LINESIZE)
Expand Down
2 changes: 1 addition & 1 deletion RSDKv4/Drawing.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,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);

Expand Down

0 comments on commit 8c70049

Please sign in to comment.