From 85841f5abdb43ebc75a9a046227e565887e97a66 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sun, 15 Nov 2020 20:48:06 +1100 Subject: [PATCH] - buildutils: Replace `sintable[]` use within SW's girlninj.cpp with `bsin()`/`bcos()`. --- source/sw/src/girlninj.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/sw/src/girlninj.cpp b/source/sw/src/girlninj.cpp index db6a4b5c0..7b2f59768 100644 --- a/source/sw/src/girlninj.cpp +++ b/source/sw/src/girlninj.cpp @@ -796,8 +796,8 @@ GirlNinjaJumpActionFunc(short SpriteNum) int nx, ny; // Move while jumping - nx = sp->xvel * (int) sintable[NORM_ANGLE(sp->ang + 512)] >> 14; - ny = sp->xvel * (int) sintable[sp->ang] >> 14; + nx = mulscale14(sp->xvel, bcos(sp->ang)); + ny = mulscale14(sp->xvel, bsin(sp->ang)); // if cannot move the sprite if (!move_actor(SpriteNum, nx, ny, 0L))