Update for VS security settings

This commit is contained in:
alyosha-tas 2016-11-08 22:46:47 -05:00 committed by GitHub
parent 12427f5c9a
commit 798f7d7549
1 changed files with 3 additions and 1 deletions

View File

@ -940,7 +940,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
}
//since this will run for every VS game, let's get security setting too
_isVS2c05 = cart.vs_security;
//values below 16 are for the 2c05 PPU
//values 16,32,48 are for Namco games and dealt with in mapper 206
_isVS2c05 = (byte)(cart.vs_security & 15);
}
}