CIceSheegoth: Remove constexpr from virtual function

This commit is contained in:
Luke Street 2020-06-13 20:22:27 -04:00
parent 4ff1811dd6
commit 7e8bc8dac8
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ public:
CPathFindSearch* GetSearchPath() override { CPathFindSearch* GetSearchPath() override {
return x928_pathFindMode == EPathFindMode::Normal ? &x760_pathSearch : &x844_approachSearch; return x928_pathFindMode == EPathFindMode::Normal ? &x760_pathSearch : &x844_approachSearch;
} }
[[nodiscard]] constexpr float GetGravityConstant() const override { return 10.f * 24.525f; } [[nodiscard]] float GetGravityConstant() const override { return 10.f * 24.525f; }
CProjectileInfo* GetProjectileInfo() override { return &xa58_; } CProjectileInfo* GetProjectileInfo() override { return &xa58_; }
}; };
} // namespace MP1 } // namespace MP1