- 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
1 changed files with 1 additions and 4 deletions

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
// 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);
}
//----------------------------------------------------------------------------