Update Mapper116.cs

Fixes Kart Fighter
Not sure why I added that condition in the first place, it doesn't break Somari.
This commit is contained in:
alyosha-tas 2017-10-31 11:41:50 -04:00 committed by GitHub
parent 41282bfc21
commit ad66699b23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
void WriteModeControl(int addr, byte value)
{
if (((addr & 0x4100) != 0x4100) || addr>=0x4200) return;
if ((addr & 0x4100) != 0x4100) return;
mode = value & 3;
bool chr_base = value.Bit(2);