From e099a19f036b63ece35a5200fc6d332efcb6942d Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 8 Oct 2022 20:12:54 +1100 Subject: [PATCH] - Duke: Fix bad x/yrepeat scaling. * Merge with or above `- use Scale wrappers in global code and parts of Duke.`. --- source/games/duke/src/actors.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/games/duke/src/actors.cpp b/source/games/duke/src/actors.cpp index 1535270cb..a943413b3 100644 --- a/source/games/duke/src/actors.cpp +++ b/source/games/duke/src/actors.cpp @@ -486,7 +486,7 @@ void moveplayers(void) else act->spr.scale.X = (0.65625); if (act->spr.scale.Y < 0.5625) - act->spr.scale.Y += (4); + act->spr.scale.Y += (0.0625); else { act->spr.scale.Y = (0.5625); @@ -2333,8 +2333,8 @@ bool bloodpool(DDukeActor* actor, bool puke) if (actor->temp_data[2] == 32) { - actor->spr.scale.X += (-6); - actor->spr.scale.Y += (-6); + actor->spr.scale.X += (-0.09375); + actor->spr.scale.Y += (-0.09375); } } else actor->temp_data[1] = 0;