diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-12-11 13:26:51 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-12-11 13:26:51 +0100 |
commit | fff2fe2ed43fe61cf12eb861fd6a652e1fcc70c2 (patch) | |
tree | 37690bdfc2e82fd11b3c1912f49aa1b6def0a188 /src/crepe/api/AI.h | |
parent | 357ebfc3eac1d39b02875e1bd78ae6f58b10f824 (diff) |
Corrected constexpr
Diffstat (limited to 'src/crepe/api/AI.h')
-rw-r--r-- | src/crepe/api/AI.h | 4 |
1 files 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 |