- removed debug output from previous commit.

This commit is contained in:
Christoph Oelckers 2016-01-28 12:04:47 +01:00
parent dfcee625db
commit 6715a97d6e

View file

@ -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 // This is needed so that the garbage collector has access to all active
// script stacks // script stacks
@ -246,8 +246,6 @@ FACSStack::FACSStack()
next = head; next = head;
prev = NULL; prev = NULL;
head = this; head = this;
Printf("Adding stack %08d\n", this);
} }
FACSStack::~FACSStack() FACSStack::~FACSStack()
@ -261,7 +259,6 @@ FACSStack::~FACSStack()
{ {
prev->next = next; prev->next = next;
} }
Printf("Removing stack %08d\n", this);
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------