mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Fix internal Emscripten JS API calls
Emscripten 1.37.24 no longer exports these by default
This commit is contained in:
parent
50181da8a1
commit
cf5b074a95
3 changed files with 5 additions and 5 deletions
|
@ -65,7 +65,7 @@ int main(int argc, char *argv[]) {
|
|||
FS.mkdir('/userfs');
|
||||
FS.mount(IDBFS, {}, '/userfs');
|
||||
FS.syncfs(true, function(err) {
|
||||
Module['ccall']('main_after_fs_sync', null, ['string'], [err ? err.message : ""])
|
||||
ccall('main_after_fs_sync', null, ['string'], [err ? err.message : ""])
|
||||
});
|
||||
);
|
||||
/* clang-format on */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue