Skip to content

Commit

Permalink
- fixed GetLineX/GetLineY ACS implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Oct 20, 2019
1 parent 8b10d23 commit 777798e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/playsim/p_acs.cpp
Expand Up @@ -6690,7 +6690,7 @@ doplaysound: if (funcIndex == ACSF_PlayActorSound)
int lineno = it.Next();
if (lineno < 0) return 0;
DVector2 delta = Level->lines[lineno].Delta();
double result = delta[funcIndex - ACSF_GetLineX] * ACSToDouble(args[1]);
double result = Level->lines[lineno].v1->fPos()[funcIndex - ACSF_GetLineX] + delta[funcIndex - ACSF_GetLineX] * ACSToDouble(args[1]);
if (args[2])
{
DVector2 normal = DVector2(delta.Y, -delta.X).Unit();
Expand Down

0 comments on commit 777798e

Please sign in to comment.