mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
Fix math.map/math.lerp merge fallout
- LuauMathMap flag was not removed but the uses of it were - LuauMathLerp addition to math table was duplicated
This commit is contained in:
parent
29047504da
commit
87505ab098
1 changed files with 0 additions and 7 deletions
|
@ -7,7 +7,6 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
LUAU_FASTFLAGVARIABLE(LuauMathMap)
|
|
||||||
LUAU_FASTFLAGVARIABLE(LuauMathLerp)
|
LUAU_FASTFLAGVARIABLE(LuauMathLerp)
|
||||||
|
|
||||||
#undef PI
|
#undef PI
|
||||||
|
@ -490,11 +489,5 @@ int luaopen_math(lua_State* L)
|
||||||
lua_setfield(L, -2, "lerp");
|
lua_setfield(L, -2, "lerp");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (FFlag::LuauMathLerp)
|
|
||||||
{
|
|
||||||
lua_pushcfunction(L, math_lerp, "lerp");
|
|
||||||
lua_setfield(L, -2, "lerp");
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue