From bc13ae4a3d5291695aeb37bed4a7c8c613213c78 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 28 Jun 2024 12:06:47 +0200 Subject: [PATCH] fixed direction arrays --- src/game_bd/bd_caveengine.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game_bd/bd_caveengine.c b/src/game_bd/bd_caveengine.c index 98c188df..888c73d3 100644 --- a/src/game_bd/bd_caveengine.c +++ b/src/game_bd/bd_caveengine.c @@ -43,7 +43,8 @@ static const GdDirection ccw_eighth[] = GD_MV_RIGHT, GD_MV_DOWN_RIGHT, GD_MV_DOWN, - GD_MV_DOWN_LEFT + GD_MV_DOWN_LEFT, + GD_MV_LEFT }; static const GdDirection ccw_fourth[] = @@ -56,8 +57,7 @@ static const GdDirection ccw_fourth[] = GD_MV_RIGHT, GD_MV_DOWN_RIGHT, GD_MV_DOWN, - GD_MV_DOWN_LEFT, - GD_MV_LEFT + GD_MV_DOWN_LEFT }; static const GdDirection cw_eighth[] = -- 2.34.1