From 66522536ddfa64aa84ad685531323b4c5fe58480 Mon Sep 17 00:00:00 2001 From: Fellippe Heitor Date: Sun, 12 Jan 2020 19:04:44 -0300 Subject: [PATCH] Fixes file list loading on *nix systems --- source/ide/ide_methods.bas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ide/ide_methods.bas b/source/ide/ide_methods.bas index 00205b423..8f060fb96 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -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