mirror of https://github.com/PCSX2/pcsx2.git
Config: Remove unused FullBootConfig
This commit is contained in:
parent
bd9b43b482
commit
15365c8702
|
@ -551,8 +551,7 @@ struct Pcsx2Config
|
|||
MultitapPort1_Enabled:1,
|
||||
|
||||
ConsoleToStdio :1,
|
||||
HostFs :1,
|
||||
FullBootConfig :1;
|
||||
HostFs :1;
|
||||
BITFIELD_END
|
||||
|
||||
CpuOptions Cpu;
|
||||
|
|
|
@ -504,7 +504,6 @@ void Pcsx2Config::LoadSave( IniInterface& ini )
|
|||
#endif
|
||||
IniBitBool( ConsoleToStdio );
|
||||
IniBitBool( HostFs );
|
||||
IniBitBool( FullBootConfig );
|
||||
|
||||
IniBitBool( BackupSavestate );
|
||||
IniBitBool( McdEnableEjection );
|
||||
|
@ -596,5 +595,4 @@ void Pcsx2Config::CopyConfig(const Pcsx2Config& cfg)
|
|||
MultitapPort1_Enabled = cfg.MultitapPort1_Enabled;
|
||||
ConsoleToStdio = cfg.ConsoleToStdio;
|
||||
HostFs = cfg.HostFs;
|
||||
FullBootConfig = cfg.FullBootConfig;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue