diff options
author | pixel <pixel> | 2005-03-30 10:32:23 +0000 |
---|---|---|
committer | pixel <pixel> | 2005-03-30 10:32:23 +0000 |
commit | a06c9ff47887df919b7cf83f1a7fd5b195e67416 (patch) | |
tree | 8eda53c4ec77047f50b565cc53f20fd5cec2750f /cd-tool.cpp | |
parent | 3a0e89c9257062dcc26f08fe6ea2c3392c2a722b (diff) |
Adding LuaConfig class.
Diffstat (limited to 'cd-tool.cpp')
-rw-r--r-- | cd-tool.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cd-tool.cpp b/cd-tool.cpp index 328067e..671503d 100644 --- a/cd-tool.cpp +++ b/cd-tool.cpp @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: cd-tool.cpp,v 1.40 2005-03-29 01:47:06 pixel Exp $ */ +/* $Id: cd-tool.cpp,v 1.41 2005-03-30 10:32:24 pixel Exp $ */ #define WIP @@ -28,6 +28,7 @@ #include "Output.h" #include "Buffer.h" #include "BLua.h" +#include "LuaConfigFile.h" #include "cdreader.h" #include "cdutils.h" #include "generic.h" @@ -365,6 +366,8 @@ Lua * start_basic_lua(void) { LuaOutput::pushconstruct(L); LuaBuffer::pushconstruct(L); + LuaConfigFile::pushstatics(L); + CD_PUSHSTATICS(L); Luapsx::pushstatics(L); |