From 8f94b337aca64ecd34136a3b532a5b4537269cb7 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 9 Sep 2022 00:09:35 +0200 Subject: [PATCH] - removed another dead function. --- source/games/sw/src/game.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index bad8d1b83..3d8d11d71 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -235,13 +235,6 @@ constexpr int PIXZ(int value) } -// two vectors -// can determin direction -constexpr int DOT_PRODUCT_2D(int x1, int y1, int x2, int y2) -{ - return (MulScale((x1), (x2), 16) + MulScale((y1), (y2), 16)); -} - constexpr int SEC(int value) { return ((value) * 120);