1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +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 EXIT FUNCTION
AddToList: AddToList:
OPEN "./internal/temp/files.txt" FOR BINARY AS #150 OPEN "./internal/temp/files.txt" FOR INPUT AS #150
DO UNTIL EOF(150) DO UNTIL EOF(150)
LINE INPUT #150, a$ LINE INPUT #150, a$
IF LEN(a$) = 0 THEN EXIT DO IF LEN(a$) = 0 THEN EXIT DO