1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-26 17:10:38 +00:00

Fixes file list loading on *nix systems

This commit is contained in:
Fellippe Heitor 2020-01-12 19:04:44 -03:00
parent bdde70957a
commit 66522536dd

View file

@ -10187,7 +10187,7 @@ FUNCTION idezfilelist$ (path$, method, mask$) 'method0=*.bas, method1=*.*, metho
EXIT FUNCTION
AddToList:
OPEN "./internal/temp/files.txt" FOR BINARY AS #150
OPEN "./internal/temp/files.txt" FOR INPUT AS #150
DO UNTIL EOF(150)
LINE INPUT #150, a$
IF LEN(a$) = 0 THEN EXIT DO