aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-06-02 19:09:31 +0200
committerraysan5 <raysan5@gmail.com>2016-06-02 19:09:31 +0200
commit4c9d0f16a5f797e7cca2723245923d0516432a48 (patch)
tree13e0730e18047460ae4ab8012322c616ea58fa2d /src
parent80b3c4cd2bef67c71970a6f4b6c54c6f23e4bcaa (diff)
downloadraylib-4c9d0f16a5f797e7cca2723245923d0516432a48.tar.gz
raylib-4c9d0f16a5f797e7cca2723245923d0516432a48.zip
Comment to avoid warning
Diffstat (limited to 'src')
-rw-r--r--src/raygui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raygui.c b/src/raygui.c
index 266ecc6a..eaf15224 100644
--- a/src/raygui.c
+++ b/src/raygui.c
@@ -667,7 +667,7 @@ int GuiSpinner(Rectangle bounds, int value, int minValue, int maxValue)
Vector2 mousePoint = GetMousePosition();
int textWidth = MeasureText(FormatText("%i", value), style[GLOBAL_TEXT_FONTSIZE]);
- int textHeight = style[GLOBAL_TEXT_FONTSIZE];
+ //int textHeight = style[GLOBAL_TEXT_FONTSIZE]; // Unused variable
int buttonSide = 0;