CDrone: Fix CanRenderUnsorted

This commit is contained in:
Luke Street 2020-09-09 02:28:21 -04:00
parent e0f4128901
commit fbdfdb0fa4
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ void CDrone::Render(CStateManager& mgr) {
} }
bool CDrone::CanRenderUnsorted(const CStateManager& mgr) const { bool CDrone::CanRenderUnsorted(const CStateManager& mgr) const {
if (zeus::close_enough(x5dc_, 0.f)) if (!zeus::close_enough(x5dc_, 0.f))
return false; return false;
return CPatterned::CanRenderUnsorted(mgr); return CPatterned::CanRenderUnsorted(mgr);
} }