Fixed 't' block huge number support
Was calling huge not accessing it. Updated version as well to reflect changes
This commit is contained in:
parent
3facfed818
commit
3bbfcf2e9b
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
||||
|
||||
crypto.lua
|
||||
crypto.lua
|
||||
crypto.lua
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
bin={}
|
||||
bin.Version={5,0,1}
|
||||
bin.Version={5,0,3}
|
||||
bin.stage='stable'
|
||||
bin.data=''
|
||||
bin.t='bin'
|
||||
|
||||
@ -24,11 +24,11 @@ bin.registerBlock("t",function(SIZE_OR_NIL,ref)
|
||||
tab[ind]=ref:getBlock("n",4)
|
||||
n=n+4
|
||||
elseif dt=="I" then
|
||||
tab[ind]=math.huge()
|
||||
tab[ind]=math.huge
|
||||
ref:getBlock("n",4)
|
||||
n=n+4
|
||||
elseif dt=="i" then
|
||||
tab[ind]=-math.huge()
|
||||
tab[ind]=-math.huge
|
||||
ref:getBlock("n",4)
|
||||
n=n+4
|
||||
elseif dt=="S" then
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user