GBHawk: fix color displayed when BG is off

This commit is contained in:
alyosha-tas 2020-09-24 17:26:50 -04:00
parent 7ea7f75f50
commit 7e7713c955
2 changed files with 2 additions and 2 deletions

View File

@ -891,7 +891,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
} }
else else
{ {
pixel = 0; pixel = BGP & 3;
} }
} }

View File

@ -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