mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Update lmathlib.cpp (#241)
This commit is contained in:
parent
dd02420f70
commit
222f03bbda
1 changed files with 1 additions and 2 deletions
|
@ -385,8 +385,7 @@ static int math_sign(lua_State* L)
|
|||
|
||||
static int math_round(lua_State* L)
|
||||
{
|
||||
double v = luaL_checknumber(L, 1);
|
||||
lua_pushnumber(L, round(v));
|
||||
lua_pushnumber(L, round(luaL_checknumber(L, 1)));
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue