This commit is contained in:
Ray
2025-10-07 19:42:05 +02:00
parent ca664cb023
commit 5dd97ecf2f

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];
} }
} }
} }