Mac string fix

This commit is contained in:
Tanasart 2023-03-22 12:59:58 +07:00
parent 03817e8aeb
commit fc425113bf

View file

@ -2,7 +2,7 @@ function file_text_read_all(path) {
var f = file_text_open_read(path);
var s = "";
while(!file_text_eof(f))
s += file_text_readln(f);
s += string(file_text_readln(f));
file_text_close(f);
return s;
}