diff options
Diffstat (limited to 'src/client/main.cpp')
| -rw-r--r-- | src/client/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/main.cpp b/src/client/main.cpp index d6184e0..94e566e 100644 --- a/src/client/main.cpp +++ b/src/client/main.cpp @@ -126,7 +126,7 @@ int main(int argc, char *argv[]){ // Initialize bullet phys_genesis(); - + //printf("Phys genisis complete\n"); //Create a new lua state, this gets shared everywhere //Set the path for lua putenv((char*)"LUA_PATH=../data/?.lua"); @@ -178,14 +178,14 @@ int main(int argc, char *argv[]){ printf("[OK]\n"); printf("All libs loaded.\n"); //Sets the global event handeler - printf("Creating event receiver\n"); + //printf("Creating event receiver\n"); GlobalEventReceiver ger = GlobalEventReceiver(device); - printf("Created event receiver\n"); + //printf("Created event receiver\n"); device->setEventReceiver(&ger); assert(lua_gettop(L) == 0); pusherrorfunc(L);//errfunc int err = luaL_loadfile(state,"init.lua");//errfunc,init() - printf("Error loading init.lua: %d\n",err); + //printf("Error loading init.lua: %d\n",err); switch(err){//errmsg or nothing case 0: break; //no error |
