diff options
author | Jaklyy <102590697+Jaklyy@users.noreply.github.com> | 2023-08-27 07:27:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 13:27:42 +0200 |
commit | 758b5ee7a181f0e02683b1a4b928cf3e92b03073 (patch) | |
tree | dd5e1d102017eca7bdbe3ac39755edcbe1208070 | |
parent | ee5567708630441d8d3210e81d6e03d028fb7bbd (diff) |
fix aa calc for 1px tall 0px wide slopes (#1795)
-rw-r--r-- | src/GPU3D_Soft.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GPU3D_Soft.h b/src/GPU3D_Soft.h index 25a2d6c..d9a6028 100644 --- a/src/GPU3D_Soft.h +++ b/src/GPU3D_Soft.h @@ -292,7 +292,7 @@ private: // TODO: this is still not perfect (see for example x=169 y=33) if (ylen == 0) Increment = 0; - else if (ylen == xlen) + else if (ylen == xlen && xlen != 1) Increment = 0x40000; else { |