mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- Fixed: ACS function pointer instructions need to call GetFunction on the tagged module instead of the active behavior.
SVN r3732 (trunk)
This commit is contained in:
parent
439b60ae68
commit
72f1a37ec4
1 changed files with 1 additions and 1 deletions
|
@ -4272,7 +4272,7 @@ int DLevelScript::RunScript ()
|
|||
module = activeBehavior;
|
||||
funcnum = NEXTBYTE;
|
||||
}
|
||||
func = activeBehavior->GetFunction (funcnum, module);
|
||||
func = module->GetFunction (funcnum, module);
|
||||
|
||||
if (func == NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue