Browse Source

REVIEWED: `TextToPascal()`, fix https://github.com/raylibtech/rtools/issues/57

pull/5242/head
Ray 3 weeks ago
parent
commit
5dd97ecf2f
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/rtext.c

+ 1
- 0
src/rtext.c View File

@ -1954,6 +1954,7 @@ char *TextToPascal(const char *text)
{
j++;
if ((text[j] >= 'a') && (text[j] <= 'z')) buffer[i] = text[j] - 32;
else if ((text[j] >= '0') && (text[j] <= '9')) buffer[i] = text[j];
}
}
}

Loading…
Cancel
Save