raysan5 4 anni fa
parent
commit
d5856e5182
1 ha cambiato i file con 5 aggiunte e 5 eliminazioni
  1. 5 5
      src/raygui.h

+ 5 - 5
src/raygui.h

@@ -516,8 +516,8 @@ RAYGUIDEF bool GuiCheckIconPixel(int iconId, int x, int y);     // Check icon pi
 #endif
 #endif
 
 
 #include <stdio.h>              // Required for: FILE, fopen(), fclose(), fprintf(), feof(), fscanf(), vsprintf()
 #include <stdio.h>              // Required for: FILE, fopen(), fclose(), fprintf(), feof(), fscanf(), vsprintf()
-#include <string.h>             // Required for: strlen() on GuiTextBox()
-#include <math.h>               // Required for: roundf() on GuiColorPicker()
+#include <string.h>             // Required for: strlen() [GuiTextBox()]
+#include <math.h>               // Required for: roundf() [GuiColorPicker()]
 
 
 #if defined(RAYGUI_STANDALONE)
 #if defined(RAYGUI_STANDALONE)
     #include <stdarg.h>         // Required for: va_list, va_start(), vfprintf(), va_end()
     #include <stdarg.h>         // Required for: va_list, va_start(), vfprintf(), va_end()
@@ -1373,7 +1373,7 @@ bool GuiDropdownBox(Rectangle bounds, const char *text, int *active, bool editMo
 // NOTE 2: Returns if KEY_ENTER pressed (useful for data validation)
 // NOTE 2: Returns if KEY_ENTER pressed (useful for data validation)
 bool GuiTextBox(Rectangle bounds, char *text, int textSize, bool editMode)
 bool GuiTextBox(Rectangle bounds, char *text, int textSize, bool editMode)
 {
 {
-    static int framesCounter = 0;           // Required for blinking cursor
+    static int framesCounter = 0;       // Blinking cursor counter
 
 
     GuiControlState state = guiState;
     GuiControlState state = guiState;
     bool pressed = false;
     bool pressed = false;
@@ -1561,7 +1561,7 @@ bool GuiValueBox(Rectangle bounds, const char *text, int *value, int minValue, i
         #define VALUEBOX_MAX_CHARS  32
         #define VALUEBOX_MAX_CHARS  32
     #endif
     #endif
 
 
-    static int framesCounter = 0;           // Required for blinking cursor
+    static int framesCounter = 0;           // Blinking cursor counter
 
 
     GuiControlState state = guiState;
     GuiControlState state = guiState;
     bool pressed = false;
     bool pressed = false;
@@ -1678,7 +1678,7 @@ bool GuiValueBox(Rectangle bounds, const char *text, int *value, int minValue, i
 // Text Box control with multiple lines
 // Text Box control with multiple lines
 bool GuiTextBoxMulti(Rectangle bounds, char *text, int textSize, bool editMode)
 bool GuiTextBoxMulti(Rectangle bounds, char *text, int textSize, bool editMode)
 {
 {
-    static int framesCounter = 0;           // Required for blinking cursor
+    static int framesCounter = 0;           // Blinking cursor counter
 
 
     GuiControlState state = guiState;
     GuiControlState state = guiState;
     bool pressed = false;
     bool pressed = false;