mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 06:39:14 +01:00
Software backend: don't skip red component in TEV.
This commit is contained in:
parent
5e1c6aba33
commit
685d612c8c
@ -198,7 +198,7 @@ void Tev::DrawColorRegular(TevStageCombiner::ColorCombiner &cc, const InputRegTy
|
|||||||
|
|
||||||
void Tev::DrawColorCompare(TevStageCombiner::ColorCombiner &cc, const InputRegType inputs[4])
|
void Tev::DrawColorCompare(TevStageCombiner::ColorCombiner &cc, const InputRegType inputs[4])
|
||||||
{
|
{
|
||||||
for (int i = BLU_C; i < RED_C; i++)
|
for (int i = BLU_C; i <= RED_C; i++)
|
||||||
{
|
{
|
||||||
switch ((cc.shift<<1)|cc.op|8) // encoded compare mode
|
switch ((cc.shift<<1)|cc.op|8) // encoded compare mode
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user