mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +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)
|
||||
{
|
||||
state = (AISTATE*)(intptr_t)i;
|
||||
Printf("Indexing state %p as %d. State really is %p\n", savestate, i, state);
|
||||
return;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
Printf("Unable to index state %p. Not found in list\n", savestate);
|
||||
state = nullptr;
|
||||
}
|
||||
|
||||
|
@ -452,11 +450,9 @@ void UnindexAIState(AISTATE*& state)
|
|||
if (index >= 0 && index < countof(allAIStates))
|
||||
{
|
||||
state = allAIStates[index];
|
||||
Printf("Unindexing %i to state %p\n", int(index), state);
|
||||
}
|
||||
else
|
||||
{
|
||||
Printf("Unable to unindex state %d\n", int(index));
|
||||
state = nullptr;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue