diff options
| author | Alexander M Pickering <alex@cogarr.net> | 2023-11-24 21:48:01 -0600 |
|---|---|---|
| committer | Alexander M Pickering <alex@cogarr.net> | 2023-11-24 21:48:01 -0600 |
| commit | 004e369c3cf18f6106856857a6358514910cf48c (patch) | |
| tree | 029b97b15e3c828a7216539feb061cda60c816a4 | |
| parent | dddf5303cd3f9f8c46ee82b4e15549b2de32951e (diff) | |
| download | brokengine-004e369c3cf18f6106856857a6358514910cf48c.tar.gz brokengine-004e369c3cf18f6106856857a6358514910cf48c.tar.bz2 brokengine-004e369c3cf18f6106856857a6358514910cf48c.zip | |
Finish reverting the debug prints
| -rw-r--r-- | src/shared/lua_api/load_net.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/lua_api/load_net.cpp b/src/shared/lua_api/load_net.cpp index 8a44d75..bff55cf 100644 --- a/src/shared/lua_api/load_net.cpp +++ b/src/shared/lua_api/load_net.cpp @@ -449,9 +449,9 @@ void gameloop_net(lua_State* L){ } } - printf("There are %d items left on the lua stack\n",lua_gettop(L)); + //printf("There are %d items left on the lua stack\n",lua_gettop(L)); lua_pop(L,2); - printf("Done with net game loop\n"); + //printf("Done with net game loop\n"); assert(lua_gettop(L) == 0); } |
