diff options
Diffstat (limited to 'client/lua.cc')
-rw-r--r-- | client/lua.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/lua.cc b/client/lua.cc index 46c8fbd..c803e23 100644 --- a/client/lua.cc +++ b/client/lua.cc @@ -42,6 +42,8 @@ LUA::LUA(Variables &variables) var++; } + // printf("preload: [%s]\n", preload.c_str()); + int s = luaL_loadbuffer(L, preload.c_str(), preload.size(), "preload"); switch(s) { case 0: //no errors; |