- 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:
Braden Obrzut 2012-07-03 20:17:31 +00:00
parent 439b60ae68
commit 72f1a37ec4

View file

@ -4272,7 +4272,7 @@ int DLevelScript::RunScript ()
module = activeBehavior;
funcnum = NEXTBYTE;
}
func = activeBehavior->GetFunction (funcnum, module);
func = module->GetFunction (funcnum, module);
if (func == NULL)
{