- moved FirstThinker function to FLevelLocals

Currently it is meaningless but that's where it should be later.
This commit is contained in:
Christoph Oelckers 2019-01-28 14:06:19 +01:00
commit d0942bcb97
4 changed files with 6 additions and 6 deletions

View file

@ -328,7 +328,7 @@ void DThinker::PostSerialize()
//
//==========================================================================
DThinker *DThinker::FirstThinker (int statnum)
DThinker *FLevelLocals::FirstThinker (int statnum)
{
DThinker *node;
@ -336,10 +336,10 @@ DThinker *DThinker::FirstThinker (int statnum)
{
statnum = MAX_STATNUM;
}
node = Thinkers[statnum].GetHead();
node = DThinker::Thinkers[statnum].GetHead();
if (node == NULL)
{
node = FreshThinkers[statnum].GetHead();
node = DThinker::FreshThinkers[statnum].GetHead();
if (node == NULL)
{
return NULL;