Skip to content

Commit 8a5a95c

Browse files
authored
Removed inaccurate comment about negitves not being supported with TextToFloat And TextToInt Methods (#4596)
1 parent 1f704be commit 8a5a95c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/raylib.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,8 +1520,8 @@ RLAPI const char *TextToPascal(const char *text);
15201520
RLAPI const char *TextToSnake(const char *text); // Get Snake case notation version of provided string
15211521
RLAPI const char *TextToCamel(const char *text); // Get Camel case notation version of provided string
15221522

1523-
RLAPI int TextToInteger(const char *text); // Get integer value from text (negative values not supported)
1524-
RLAPI float TextToFloat(const char *text); // Get float value from text (negative values not supported)
1523+
RLAPI int TextToInteger(const char *text); // Get integer value from text
1524+
RLAPI float TextToFloat(const char *text); // Get float value from text
15251525

15261526
//------------------------------------------------------------------------------------
15271527
// Basic 3d Shapes Drawing Functions (Module: models)

0 commit comments

Comments
 (0)