Skip to content

Commit

Permalink
Remove debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
qoh committed Sep 20, 2015
1 parent 23a7d59 commit 7ab1ea1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions BlocklandLua/Torque.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ enum NamespaceEntryType {
#define BLSCAN(target, pattern, mask) \
target = (target##Fn)ScanFunc(pattern, mask); \
if(target == NULL) \
Printf("torquedll | Cannot find function "#target"!"); \
else \
Printf("torquedll | Found "#target" at %x", target);

Printf("torquedll | Cannot find function "#target"!");

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
1 change: 1 addition & 0 deletions BlocklandLua/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ DWORD WINAPI Init(LPVOID args)
ConsoleFunction(NULL, "luaExec", tsf_luaExec, "luaExec(string filename, bool silent=false) - Execute a Lua code file.", 2, 3);
ConsoleFunction(NULL, "luaCall", tsf_luaCall, "luaCall(string name, ...) - Call a Lua function.", 2, 20);

Sleep(50);
Eval("if(isFunction(\"onLuaLoaded\"))onLuaLoaded();");

return 0;
Expand Down

0 comments on commit 7ab1ea1

Please sign in to comment.