diff options
| author | raysan5 <[email protected]> | 2017-01-15 01:10:23 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2017-01-15 01:10:23 +0100 |
| commit | 61f6b0f707f408b89306ff1a6a2d825662ba8311 (patch) | |
| tree | 91cb2122b654478c95835b248d369a9465b8a1c6 /src/rlua.h | |
| parent | 4a158d972d9d110fcb581bc9f6583d05a2dc2544 (diff) | |
| download | raylib-61f6b0f707f408b89306ff1a6a2d825662ba8311.tar.gz raylib-61f6b0f707f408b89306ff1a6a2d825662ba8311.zip | |
Removed GetNextPOT(), review TraceLog()
Diffstat (limited to 'src/rlua.h')
| -rw-r--r-- | src/rlua.h | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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) |
