- removed the default parameter handling from all native script functions because it is no longer needed.
This commit is contained in:
parent
e643582957
commit
94ed30e782
45 changed files with 736 additions and 769 deletions
|
|
@ -900,7 +900,7 @@ DEFINE_ACTION_FUNCTION(AActor, StartSoundSequenceID)
|
|||
PARAM_INT(seq);
|
||||
PARAM_INT(type);
|
||||
PARAM_INT(modenum);
|
||||
PARAM_BOOL_DEF(nostop);
|
||||
PARAM_BOOL(nostop);
|
||||
ACTION_RETURN_POINTER(SN_StartSequence(self, seq, seqtype_t(type), modenum, nostop));
|
||||
}
|
||||
|
||||
|
|
@ -924,7 +924,7 @@ DEFINE_ACTION_FUNCTION(_Sector, StartSoundSequenceID)
|
|||
PARAM_INT(seq);
|
||||
PARAM_INT(type);
|
||||
PARAM_INT(modenum);
|
||||
PARAM_BOOL_DEF(nostop);
|
||||
PARAM_BOOL(nostop);
|
||||
ACTION_RETURN_POINTER(SN_StartSequence(self, chan, seq, seqtype_t(type), modenum, nostop));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue