Browse Source

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

pull/5232/head
Ray 4 days ago
committed by Saksham Goyal
parent
commit
ff8038b6b1
No known key found for this signature in database GPG Key ID: 287D96BB5977A168
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