2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 17:11:22 +00:00

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

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