mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- implemented missing 'exact' parameter for ThinkerIterator.Next.
This commit is contained in:
parent
d96d505520
commit
d222e82bbc
1 changed files with 2 additions and 1 deletions
|
@ -992,7 +992,8 @@ DEFINE_ACTION_FUNCTION(DThinkerIterator, Create)
|
|||
DEFINE_ACTION_FUNCTION(DThinkerIterator, Next)
|
||||
{
|
||||
PARAM_SELF_PROLOGUE(DThinkerIterator);
|
||||
ACTION_RETURN_OBJECT(self->Next());
|
||||
PARAM_BOOL(exact);
|
||||
ACTION_RETURN_OBJECT(self->Next(exact));
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(DThinkerIterator, Reinit)
|
||||
|
|
Loading…
Reference in a new issue