Re-run autogen for everything
This commit is contained in:
parent
46b9cf5fb8
commit
dd13da2a0d
@ -250,7 +250,7 @@ end
|
||||
--- @param x number
|
||||
--- Rounds `x` to the nearest integer value
|
||||
function math.round(x)
|
||||
return x > 0 and math.floor(x + 0.5) or math.ceil(x - 0.5)
|
||||
return x > 0 and __math_floor(x + 0.5) or __math_ceil(x - 0.5)
|
||||
end
|
||||
|
||||
|
||||
|
@ -222,7 +222,7 @@ char gSmluaConstants[] = ""
|
||||
"--- @param x number\n"
|
||||
"--- Rounds `x` to the nearest integer value\n"
|
||||
"function math.round(x)\n"
|
||||
"return x > 0 and math.floor(x + 0.5) or math.ceil(x - 0.5)\n"
|
||||
"return x > 0 and __math_floor(x + 0.5) or __math_ceil(x - 0.5)\n"
|
||||
"end\n"
|
||||
"--- @type integer\n"
|
||||
"FONT_TINY = -1\n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user