Fixes, some thanks to ASan

This commit is contained in:
eray orçunus 2020-10-08 21:46:00 +03:00
parent b97f86deea
commit 73a3e9d5bb
3 changed files with 23 additions and 7 deletions

View file

@ -366,6 +366,12 @@ COcclusion::ProcessBeforeRendering(void)
}
NumActiveOccluders--;
i--;
// Taken from Mobile!
#ifdef FIX_BUGS
if (i == -1) {
i = 0;
}
#endif
}
}
}
@ -481,4 +487,4 @@ void COcclusion::Render() {
DefinedState();
}
#endif
#endif