Parcourir la source

REVIEWED: TextFormat() #1626

pull/1632/head
Ray il y a 3 ans
Parent
révision
ca22a87949
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/text.c

+ 1
- 1
src/text.c Voir le fichier

@ -1175,7 +1175,7 @@ const char *TextFormat(const char *text, ...)
va_list args;
va_start(args, text);
vsprintf(currentBuffer, text, args);
vsnprintf(currentBuffer, MAX_TEXT_BUFFER_LENGTH, text, args);
va_end(args);
index += 1; // Move to next buffer for next function call

Chargement…
Annuler
Enregistrer