From 6715a97d6e344de563441e23bbf0e424cd3ba25a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 28 Jan 2016 12:04:47 +0100 Subject: [PATCH] - removed debug output from previous commit. --- src/p_acs.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/p_acs.cpp b/src/p_acs.cpp index da76408ed..9737f8aa9 100644 --- a/src/p_acs.cpp +++ b/src/p_acs.cpp @@ -219,7 +219,7 @@ FWorldGlobalArray ACS_GlobalArrays[NUM_GLOBALVARS]; //---------------------------------------------------------------------------- // -// ACS stack management +// ACS stack manager // // This is needed so that the garbage collector has access to all active // script stacks @@ -246,8 +246,6 @@ FACSStack::FACSStack() next = head; prev = NULL; head = this; - - Printf("Adding stack %08d\n", this); } FACSStack::~FACSStack() @@ -261,7 +259,6 @@ FACSStack::~FACSStack() { prev->next = next; } - Printf("Removing stack %08d\n", this); } //----------------------------------------------------------------------------