mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +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
|
// 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);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue