mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-03 16:55:14 +01:00
Mac string fix
This commit is contained in:
parent
03817e8aeb
commit
fc425113bf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue