Skip to content

Commit

Permalink
Fix the runtime on newer Emscripten versions (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
pravdomil authored and koute committed Aug 7, 2019
1 parent 5dd7f17 commit 76e4f75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdweb-internal-runtime/src/runtime_emscripten.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Module.STDWEB_PRIVATE.alloc = function alloc( size ) {
};

Module.STDWEB_PRIVATE.dyncall = function( signature, ptr, args ) {
return Runtime.dynCall( signature, ptr, args );
return dynCall( signature, ptr, args );
};

Module.STDWEB_PRIVATE.utf8_len = function utf8_len( str ) {
Expand Down

0 comments on commit 76e4f75

Please sign in to comment.