2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-09 15:39:06 +00:00

CCollisionActorManager: Make use of std::nullopt

Gets rid of unnecessary zeroing out of the internal buffer on some
implementations.
This commit is contained in:
Lioncash 2020-04-02 02:08:11 -04:00
parent 6931737aef
commit 0ae638eef9

View File

@ -243,7 +243,7 @@ std::optional<zeus::CVector3f> CCollisionActorManager::GetDeviation(const CState
} }
} }
return {}; return std::nullopt;
} }
} // namespace urde } // namespace urde