mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 00:40:56 +00:00
- removed debug messages in Blood's savegame code.
This commit is contained in:
parent
5db8047b41
commit
536ed3827d
1 changed files with 0 additions and 4 deletions
|
@ -437,12 +437,10 @@ void IndexAIState(AISTATE*& state)
|
||||||
if (state == cstate)
|
if (state == cstate)
|
||||||
{
|
{
|
||||||
state = (AISTATE*)(intptr_t)i;
|
state = (AISTATE*)(intptr_t)i;
|
||||||
Printf("Indexing state %p as %d. State really is %p\n", savestate, i, state);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
Printf("Unable to index state %p. Not found in list\n", savestate);
|
|
||||||
state = nullptr;
|
state = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -452,11 +450,9 @@ void UnindexAIState(AISTATE*& state)
|
||||||
if (index >= 0 && index < countof(allAIStates))
|
if (index >= 0 && index < countof(allAIStates))
|
||||||
{
|
{
|
||||||
state = allAIStates[index];
|
state = allAIStates[index];
|
||||||
Printf("Unindexing %i to state %p\n", int(index), state);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Printf("Unable to unindex state %d\n", int(index));
|
|
||||||
state = nullptr;
|
state = nullptr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue