mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06:00
fix aa calc for 1px tall 0px wide slopes (#1795)
This commit is contained in:
@ -292,7 +292,7 @@ private:
|
|||||||
// TODO: this is still not perfect (see for example x=169 y=33)
|
// TODO: this is still not perfect (see for example x=169 y=33)
|
||||||
if (ylen == 0)
|
if (ylen == 0)
|
||||||
Increment = 0;
|
Increment = 0;
|
||||||
else if (ylen == xlen)
|
else if (ylen == xlen && xlen != 1)
|
||||||
Increment = 0x40000;
|
Increment = 0x40000;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user