GBHawk: fix color displayed when BG is off
This commit is contained in:
parent
7ea7f75f50
commit
7e7713c955
|
@ -891,7 +891,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
pixel = 0;
|
pixel = BGP & 3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -558,7 +558,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
pixel = 0;
|
pixel = BGP & 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
// now we have the BG pixel, we next need the sprite pixel
|
// now we have the BG pixel, we next need the sprite pixel
|
||||||
|
|
Loading…
Reference in New Issue