mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- removed debug output from previous commit.
This commit is contained in:
parent
dfcee625db
commit
6715a97d6e
1 changed files with 1 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue