diff --git a/compiler/utils/pas2js/dist/rtl.js b/compiler/utils/pas2js/dist/rtl.js index 8f5db88..50d1326 100644 --- a/compiler/utils/pas2js/dist/rtl.js +++ b/compiler/utils/pas2js/dist/rtl.js @@ -1096,7 +1096,7 @@ var rtl = { if (a<0) a += rtl.hiInt; if (b<=0) return a; if (b>54) return 0; - var r = a * Mat.pow(2,b); + var r = a * Math.pow(2,b); if (r <= rtl.hiInt) return r; return r % rtl.hiInt; },