This commit is contained in:
Ray 2025-10-07 19:42:05 +02:00 committed by Saksham Goyal
parent 37d5671c41
commit ff8038b6b1
No known key found for this signature in database
GPG Key ID: 287D96BB5977A168

View File

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