1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 02:04:44 +00:00

Reduce memory usage

This commit is contained in:
Samuel Gomes 2024-03-11 08:35:17 +05:30
parent c8e4098fb2
commit ab56aeff93

View file

@ -230,7 +230,7 @@ IF MacOSX THEN BATCHFILE_EXTENSION = ".command"
DIM inlinedatastr(0 TO 255) AS STRING
FOR i = 0 TO 255
inlinedatastr(i) = "0x" + RIGHT$("0" + HEX$(i), 2) + ","
inlinedatastr(i) = str2(i) + ","
NEXT