aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/AI.h
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-12-11 13:26:51 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-12-11 13:26:51 +0100
commitfff2fe2ed43fe61cf12eb861fd6a652e1fcc70c2 (patch)
tree37690bdfc2e82fd11b3c1912f49aa1b6def0a188 /src/crepe/api/AI.h
parent357ebfc3eac1d39b02875e1bd78ae6f58b10f824 (diff)
Corrected constexpr
Diffstat (limited to 'src/crepe/api/AI.h')
-rw-r--r--src/crepe/api/AI.h4
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