summaryrefslogtreecommitdiffhomepage
path: root/examples/shapes
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shapes')
-rw-r--r--examples/shapes/raygui.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/shapes/raygui.h b/examples/shapes/raygui.h
index 226ce8f2..6d5df13e 100644
--- a/examples/shapes/raygui.h
+++ b/examples/shapes/raygui.h
@@ -4337,7 +4337,7 @@ static const char **GuiTextSplit(const char *text, int *count, int *textRow)
// NOTE: Color data should be passed normalized
static Vector3 ConvertRGBtoHSV(Vector3 rgb)
{
- Vector3 hsv = { 0.0f };
+ Vector3 hsv = { 0 };
float min = 0.0f;
float max = 0.0f;
float delta = 0.0f;
@@ -4390,7 +4390,7 @@ static Vector3 ConvertRGBtoHSV(Vector3 rgb)
// NOTE: Color data should be passed normalized
static Vector3 ConvertHSVtoRGB(Vector3 hsv)
{
- Vector3 rgb = { 0.0f };
+ Vector3 rgb = { 0 };
float hh = 0.0f, p = 0.0f, q = 0.0f, t = 0.0f, ff = 0.0f;
long i = 0;