fix crash under freak circumstances

This commit is contained in:
Jaklyy 2024-05-10 05:44:51 -04:00
parent 60b28d846f
commit 19e8774ad0
1 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ private:
constexpr s32 Interpolate(s32 y0, s32 y1) const
{
if (x == 0 || y0 == y1) return y0;
if (x == 0 || xdiff == 0 || y0 == y1) return y0;
if (!linear)
{
@ -167,7 +167,7 @@ private:
constexpr s32 InterpolateZ(s32 z0, s32 z1)
{
if (x == 0 || z0 == z1) return z0;
if (x == 0 || xdiff == 0 || z0 == z1) return z0;
if (wbuffer)
{