1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-15 20:35:17 +03:00

Fixes #1626: Enable the Lua bit32 library

This commit is contained in:
Damjan Adamic 2014-08-23 17:14:06 +02:00
parent 07fe45ec5f
commit 8d49b1076b
2 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ static const luaL_Reg loadedlibs[] = {
// {LUA_IOLIBNAME, luaopen_io},
// {LUA_OSLIBNAME, luaopen_os},
// {LUA_STRLIBNAME, luaopen_string},
// {LUA_BITLIBNAME, luaopen_bit32},
{LUA_BITLIBNAME, luaopen_bit32},
{LUA_MATHLIBNAME, luaopen_math},
// {LUA_DBLIBNAME, luaopen_debug},
{NULL, NULL}