mirror of https://github.com/AxioDL/metaforce.git
CIceSheegoth: Remove constexpr from virtual function
This commit is contained in:
parent
4ff1811dd6
commit
7e8bc8dac8
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue