PSX - initialize with a single controller + memcard instead of two, to be consistent with other cores

This commit is contained in:
adelikat 2020-09-27 09:59:05 -05:00
parent ad9a04d918
commit 33c8808ee4
1 changed files with 4 additions and 3 deletions
src/BizHawk.Emulation.Cores/Consoles/Sony/PSX

View File

@ -1177,12 +1177,13 @@ namespace BizHawk.Emulation.Cores.Sony.PSX
public SyncSettings()
{
//initialize with historical default settings
//initialize with single controller and memcard
var user = new OctoshockFIOConfigUser();
user.Memcards[0] = user.Memcards[1] = true;
user.Memcards[0] = true;
user.Memcards[1] = false;
user.Multitaps[0] = user.Multitaps[0] = false;
user.Devices8[0] = OctoshockDll.ePeripheralType.DualShock;
user.Devices8[4] = OctoshockDll.ePeripheralType.DualShock;
user.Devices8[4] = OctoshockDll.ePeripheralType.None;
FIOConfig = user;
}