Skip to content

Commit

Permalink
Removed inaccurate comment about negitves not being supported with Te…
Browse files Browse the repository at this point in the history
…xtToFloat And TextToInt Methods (#4596)
  • Loading branch information
hexmaster111 authored Dec 13, 2024
1 parent 1f704be commit 8a5a95c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/raylib.h
Original file line number Diff line number Diff line change
Expand Up @@ -1520,8 +1520,8 @@ RLAPI const char *TextToPascal(const char *text);
RLAPI const char *TextToSnake(const char *text); // Get Snake case notation version of provided string
RLAPI const char *TextToCamel(const char *text); // Get Camel case notation version of provided string

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

//------------------------------------------------------------------------------------
// Basic 3d Shapes Drawing Functions (Module: models)
Expand Down

0 comments on commit 8a5a95c

Please sign in to comment.