From fff2fe2ed43fe61cf12eb861fd6a652e1fcc70c2 Mon Sep 17 00:00:00 2001 From: max-001 Date: Wed, 11 Dec 2024 13:26:51 +0100 Subject: Corrected constexpr --- src/crepe/api/AI.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crepe/api/AI.h b/src/crepe/api/AI.h index f1c8951..4f7692b 100644 --- a/src/crepe/api/AI.h +++ b/src/crepe/api/AI.h @@ -118,9 +118,9 @@ private: friend class AISystem; //! The minimum amount of steps for the path following behavior - static constexpr const int MIN_STEP = 16; + static constexpr int MIN_STEP = 16; //! The radius to step size ratio for the path following behavior - static constexpr const float RADIUS_TO_STEP = 400.0f; + static constexpr float RADIUS_TO_STEP = 400.0f; }; } // namespace crepe -- cgit v1.2.3