DS GX: Fix toon shading alpha

This commit is contained in:
Vicki Pfau 2017-04-30 15:19:18 -07:00
parent 7e60ed2718
commit 4dc036fe21
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ static color_t _lookupColor(struct DSGXSoftwareRenderer* renderer, struct DSGXSo
wg = ((g + 1) * (tg + 1) - 1) >> 6;
wb = ((b + 1) * (tb + 1) - 1) >> 6;
wa = ((ta + 1) * (pa + 1) - 1) >> 6;
return _finishColor(wr, wg, wb, pa);
return _finishColor(wr, wg, wb, wa);
}
case 3:
return _finishColor(r, g, b, pa);