Re-run autogen for everything

This commit is contained in:
Agent X 2025-05-29 10:57:44 -04:00
parent 46b9cf5fb8
commit dd13da2a0d
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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"