1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00

Merge branch 'master' of github.com:elua/elua

This commit is contained in:
James Snyder 2013-11-21 15:47:45 -06:00
commit b9367630f8
2 changed files with 7 additions and 11 deletions

View File

@ -107,6 +107,13 @@ LUALIB_API int luaopen_platform (lua_State *L)
// End of platform module section
// ****************************************************************************
// Dummy open function
int luaopen_dummy(lua_State *L)
{
return 0;
}
#undef _ROM
#define _ROM( name, openf, table ) { name, openf },
@ -144,10 +151,3 @@ LUALIB_API void luaL_openlibs (lua_State *L) {
}
}
// Dummy open function
int luaopen_dummy(lua_State *L)
{
return 0;
}

View File

@ -38,10 +38,6 @@ const char *boot_order[] = {
"/rom/autorun.lua",
"/rom/autorun.lc",
#endif
#if defined(BUILD_WOFS)
"/wo/autorun.lua",
"/wo/autorun.lc",
#endif
#if defined(BUILD_SEMIFS)
"/semi/autorun.lua",
"/semi/autorun.lc",