aboutsummaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2023-11-24 21:48:01 -0600
committerAlexander M Pickering <alex@cogarr.net>2023-11-24 21:48:01 -0600
commit004e369c3cf18f6106856857a6358514910cf48c (patch)
tree029b97b15e3c828a7216539feb061cda60c816a4 /src/shared
parentdddf5303cd3f9f8c46ee82b4e15549b2de32951e (diff)
downloadbrokengine-004e369c3cf18f6106856857a6358514910cf48c.tar.gz
brokengine-004e369c3cf18f6106856857a6358514910cf48c.tar.bz2
brokengine-004e369c3cf18f6106856857a6358514910cf48c.zip
Finish reverting the debug prints
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/lua_api/load_net.cpp4
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);
}