浏览代码

[HTML5] Remove file flags from writeFile in setup.

Flags where deprecated and partly in removed in emscripten 2.0.9.
Fabio Alessandrelli 4 年之前
父节点
当前提交
8d93c723f1
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      platform/javascript/js/libs/library_godot_os.js

+ 1 - 1
platform/javascript/js/libs/library_godot_os.js

@@ -200,7 +200,7 @@ const GodotFS = {
 				}
 				FS.mkdirTree(dir);
 			}
-			FS.writeFile(path, new Uint8Array(buffer), { 'flags': 'wx+' });
+			FS.writeFile(path, new Uint8Array(buffer));
 		},
 	},
 };