mirror of https://github.com/mgba-emu/mgba.git
DS GX: Fix toon shading alpha
This commit is contained in:
parent
7e60ed2718
commit
4dc036fe21
|
@ -271,7 +271,7 @@ static color_t _lookupColor(struct DSGXSoftwareRenderer* renderer, struct DSGXSo
|
||||||
wg = ((g + 1) * (tg + 1) - 1) >> 6;
|
wg = ((g + 1) * (tg + 1) - 1) >> 6;
|
||||||
wb = ((b + 1) * (tb + 1) - 1) >> 6;
|
wb = ((b + 1) * (tb + 1) - 1) >> 6;
|
||||||
wa = ((ta + 1) * (pa + 1) - 1) >> 6;
|
wa = ((ta + 1) * (pa + 1) - 1) >> 6;
|
||||||
return _finishColor(wr, wg, wb, pa);
|
return _finishColor(wr, wg, wb, wa);
|
||||||
}
|
}
|
||||||
case 3:
|
case 3:
|
||||||
return _finishColor(r, g, b, pa);
|
return _finishColor(r, g, b, pa);
|
||||||
|
|
Loading…
Reference in New Issue