mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-04 01:05:16 +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 f = file_text_open_read(path);
|
||||||
var s = "";
|
var s = "";
|
||||||
while(!file_text_eof(f))
|
while(!file_text_eof(f))
|
||||||
s += file_text_readln(f);
|
s += string(file_text_readln(f));
|
||||||
file_text_close(f);
|
file_text_close(f);
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue