File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
src/components/Plugins/inc/plugins Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -47,20 +47,17 @@ class LuaPlugin : public Plugin
4747 bool InternalLoadPlugin ()
4848 {
4949 this ->rawLuaState = luaL_newstate ();
50- PRINTF (" InternalLoadPlugin" , " Debug #1\n " );
5150 const luaL_Reg *lib = lualibs;
5251 for (; lib->func ; lib++)
5352 {
5453 luaL_requiref (this ->rawLuaState , lib->name , lib->func , 1 );
5554 lua_pop (this ->rawLuaState , 1 );
5655 }
5756
58- PRINTF (" InternalLoadPlugin" , " Debug #2\n " );
5957 this ->luaState = new luacpp::LuaState (this ->rawLuaState , false );
6058
6159 std::vector<std::string> files = Files::FetchFileNames (this ->m_path );
6260 SetupLuaEnvironment (this );
63- PRINTF (" InternalLoadPlugin" , " Debug #3\n " );
6461 for (std::string file : files)
6562 {
6663 std::string errstr;
You can’t perform that action at this time.
0 commit comments