mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
[HTML5] Remove file flags from writeFile in setup.
Flags where deprecated and partly in removed in emscripten 2.0.9.
This commit is contained in:
parent
803f6d2388
commit
8d93c723f1
1 changed files with 1 additions and 1 deletions
|
|
@ -200,7 +200,7 @@ const GodotFS = {
|
||||||
}
|
}
|
||||||
FS.mkdirTree(dir);
|
FS.mkdirTree(dir);
|
||||||
}
|
}
|
||||||
FS.writeFile(path, new Uint8Array(buffer), { 'flags': 'wx+' });
|
FS.writeFile(path, new Uint8Array(buffer));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue