Update MapperSG.cs

This commit is contained in:
alyosha-tas 2017-07-20 15:01:09 -04:00 committed by GitHub
parent ab814fb3e4
commit 0b7c10594c
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk
// cartridge and other OPSYS
if (addr>=0x8000)
{
bank = value;
bank = (byte)(value & 0x7);
}
}
}