Browse Source

Fix typo for `pow` in `runtime.js`

gingerBill 3 năm trước cách đây
mục cha
commit
3b5998af12
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      vendor/wasm/js/runtime.js

+ 1 - 1
vendor/wasm/js/runtime.js

@@ -1340,7 +1340,7 @@ function odinSetupDefaultImports(wasmMemoryInterface, consoleElement) {
 			sqrt:    (x) => Math.sqrt(x),
 			sin:     (x) => Math.sin(x),
 			cos:     (x) => Math.cos(x),
-			pow:     (x) => Math.pow(x),
+			pow:     (x, power) => Math.pow(x, power),
 			fmuladd: (x, y, z) => x*y + z,
 			ln:      (x) => Math.log(x),
 			exp:     (x) => Math.exp(x),