From ad8f82c6e28bfce1b425592483fd9ada48a13d54 Mon Sep 17 00:00:00 2001 From: Gregor Hartmann Date: Wed, 25 Nov 2020 20:07:17 +0100 Subject: [PATCH] fix search path for lua require (#3336) --- app/lua/luaconf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lua/luaconf.h b/app/lua/luaconf.h index 4d261ceb..9f3b8bfa 100644 --- a/app/lua/luaconf.h +++ b/app/lua/luaconf.h @@ -104,7 +104,7 @@ //## Modified for eLua //## Defaults search modules path to our ROM File System #ifndef LUA_RPC -#define LUA_PATH_DEFAULT "/rfs/?.lua;/rfs/?.lc;/mmc/?.lua;/mmc/?.lc;/rom/?.lua;/rom/?.lc" +#define LUA_PATH_DEFAULT "?.lc;?.lua" #define LUA_CPATH_DEFAULT "" #else // #ifndef LUA_RPC #define LUA_PATH_DEFAULT \