From bd79d544d604524b10f337dac40f457f60628a40 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 5 Sep 2022 00:25:15 +0200 Subject: [PATCH] - UpdateChange --- source/games/sw/src/swactor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/games/sw/src/swactor.h b/source/games/sw/src/swactor.h index a96f2da06..d6be3b145 100644 --- a/source/games/sw/src/swactor.h +++ b/source/games/sw/src/swactor.h @@ -38,13 +38,13 @@ public: inline void UpdateChangeXY(DSWActor* actor) { - actor->user.change.XY() = MOVExy(actor->int_xvel(), actor->spr.angle); + actor->user.change.XY() = actor->spr.angle.ToVector() * actor->vel.X; } inline void UpdateChange(DSWActor* actor, double zfactor = 1.0) { UpdateChangeXY(actor); - actor->user.set_int_change_z(int(actor->int_zvel() * zfactor)); + actor->user.change.Z = actor->vel.Z * zfactor; }