Bladeren bron

Removed inaccurate comment about negitves not being supported with TextToFloat And TextToInt Methods (#4596)

pull/4600/head
__hexmaster111 5 dagen geleden
committed by GitHub
bovenliggende
commit
8a5a95c13a
Geen bekende sleutel gevonden voor deze handtekening in de database GPG sleutel-ID: B5690EEEBB952194
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. +2
    -2
      src/raylib.h

+ 2
- 2
src/raylib.h Bestand weergeven

@ -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)

Laden…
Annuleren
Opslaan