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
1 changed files with 1 additions and 1 deletions

View File

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