summaryrefslogtreecommitdiffhomepage
path: root/src/rlua.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2017-01-15 01:10:23 +0100
committerraysan5 <[email protected]>2017-01-15 01:10:23 +0100
commit61f6b0f707f408b89306ff1a6a2d825662ba8311 (patch)
tree91cb2122b654478c95835b248d369a9465b8a1c6 /src/rlua.h
parent4a158d972d9d110fcb581bc9f6583d05a2dc2544 (diff)
downloadraylib-61f6b0f707f408b89306ff1a6a2d825662ba8311.tar.gz
raylib-61f6b0f707f408b89306ff1a6a2d825662ba8311.zip
Removed GetNextPOT(), review TraceLog()
Diffstat (limited to 'src/rlua.h')
-rw-r--r--src/rlua.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/rlua.h b/src/rlua.h
index 10a75e3a..e9ed2c3c 100644
--- a/src/rlua.h
+++ b/src/rlua.h
@@ -3232,14 +3232,6 @@ int lua_GetExtension(lua_State* L)
return 1;
}
-int lua_GetNextPOT(lua_State* L)
-{
- int arg1 = LuaGetArgument_int(L, 1);
- int result = GetNextPOT(arg1);
- lua_pushinteger(L, result);
- return 1;
-}
-
//----------------------------------------------------------------------------------
// raylib [raymath] module functions - Vector3 math
//----------------------------------------------------------------------------------
@@ -3955,7 +3947,6 @@ static luaL_Reg raylib_functions[] = {
#endif
REG(TraceLog)
REG(GetExtension)
- REG(GetNextPOT)
REG(VectorAdd)
REG(VectorSubtract)
REG(VectorCrossProduct)