Skip to content

Commit 36579ac

Browse files
committed
hexen2, R_RunQuakeEffect(): fix q_sincosrad typo from commit c3609ea
1 parent b7b961a commit 36579ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/hexen2/r_part.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ void R_RunQuakeEffect (vec3_t org, float distance)
790790
num = rand() * (1.0 / RAND_MAX);
791791
num2 = distance * num;
792792
num = rand() * (1.0 / RAND_MAX);
793-
q_sincosrad(num * 2 * M_PI, &p->org[0], &p->org[1]);
793+
q_sincosrad(num * 2 * M_PI, &p->org[1], &p->org[0]);
794794
p->org[0] *= num2;
795795
p->org[1] *= num2;
796796
p->org[0] += org[0];

0 commit comments

Comments
 (0)