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:
commit
b9367630f8
@ -107,6 +107,13 @@ LUALIB_API int luaopen_platform (lua_State *L)
|
|||||||
// End of platform module section
|
// End of platform module section
|
||||||
// ****************************************************************************
|
// ****************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
// Dummy open function
|
||||||
|
int luaopen_dummy(lua_State *L)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
#undef _ROM
|
#undef _ROM
|
||||||
#define _ROM( name, openf, table ) { name, openf },
|
#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;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@ -38,10 +38,6 @@ const char *boot_order[] = {
|
|||||||
"/rom/autorun.lua",
|
"/rom/autorun.lua",
|
||||||
"/rom/autorun.lc",
|
"/rom/autorun.lc",
|
||||||
#endif
|
#endif
|
||||||
#if defined(BUILD_WOFS)
|
|
||||||
"/wo/autorun.lua",
|
|
||||||
"/wo/autorun.lc",
|
|
||||||
#endif
|
|
||||||
#if defined(BUILD_SEMIFS)
|
#if defined(BUILD_SEMIFS)
|
||||||
"/semi/autorun.lua",
|
"/semi/autorun.lua",
|
||||||
"/semi/autorun.lc",
|
"/semi/autorun.lc",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user