summaryrefslogtreecommitdiff
path: root/src/strife/p_switch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strife/p_switch.c')
-rw-r--r--src/strife/p_switch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strife/p_switch.c b/src/strife/p_switch.c
index 9234c00d..bb70f890 100644
--- a/src/strife/p_switch.c
+++ b/src/strife/p_switch.c
@@ -233,7 +233,7 @@ static void P_SpawnBrokenGlass(line_t* line)
glass->angle = (an << ANGLETOFINESHIFT);
glass->momx = FixedMul(finecosine[an], (P_Random() & 3) << FRACBITS);
- glass->momy = FixedMul(finesine[an], (P_Random() & 3) << FRACBITS);
+ glass->momy = FixedMul(finesine[an], (P_Random() & 3) << FRACBITS);
glass->momz = (P_Random() & 7) << FRACBITS;
glass->tics += (P_Random() + 7) & 7;
}