Remove tint param.

This commit is contained in:
StackZ
2020-03-05 05:44:50 +01:00
parent eceb6b884d
commit a56b50c4c2
2 changed files with 3 additions and 10 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ namespace Gui
void clearTextBufs(void);
// Draw a sprite from a sheet.
void DrawSprite(C2D_SpriteSheet sheet, size_t imgindex, int x, int y, float ScaleX = 1, float ScaleY = 1, u32 tintColor = C2D_Color32(0, 0, 0, 0));
void DrawSprite(C2D_SpriteSheet sheet, size_t imgindex, int x, int y, float ScaleX = 1, float ScaleY = 1);
// Initialize the GUI with Citro2D & Citro3D and initialize the Textbuffer.
Result init(void);