From 8a5a95c13a899564b98483f356d51a3024586870 Mon Sep 17 00:00:00 2001 From: __hexmaster111 Date: Fri, 13 Dec 2024 02:21:13 -0600 Subject: [PATCH] Removed inaccurate comment about negitves not being supported with TextToFloat And TextToInt Methods (#4596) --- src/raylib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/raylib.h b/src/raylib.h index dcaaa44c..7e1a1f83 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -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)