mirror of https://github.com/PCSX2/pcsx2.git
Wx: Fix trace log settings getting very confused
This commit is contained in:
parent
1f386cf8bd
commit
00fbc8289d
|
@ -1175,10 +1175,12 @@ static void LoadUiSettings()
|
|||
ConLog_LoadSaveSettings(loader);
|
||||
SysTraceLog_LoadSaveSettings(loader);
|
||||
|
||||
{
|
||||
wxSettingsInterface wxsi(&loader.GetConfig());
|
||||
SettingsLoadWrapper wrapper(wxsi);
|
||||
g_Conf = std::make_unique<AppConfig>();
|
||||
g_Conf->LoadSave(loader, wrapper);
|
||||
}
|
||||
|
||||
if (!wxFile::Exists(g_Conf->CurrentIso))
|
||||
{
|
||||
|
@ -1194,11 +1196,13 @@ static void LoadVmSettings()
|
|||
// are regulated by the PCSX2 UI.
|
||||
|
||||
std::unique_ptr<wxFileConfig> vmini(OpenFileConfig(GetVmSettingsFilename()));
|
||||
wxSettingsInterface wxsi(vmini.get());
|
||||
IniLoader vmloader(vmini.get());
|
||||
{
|
||||
wxSettingsInterface wxsi(vmini.get());
|
||||
SettingsLoadWrapper vmwrapper(wxsi);
|
||||
g_Conf->EmuOptions.LoadSave(vmwrapper);
|
||||
g_Conf->EmuOptions.GS.LimitScalar = g_Conf->EmuOptions.Framerate.NominalScalar;
|
||||
}
|
||||
|
||||
if (g_Conf->EnablePresets)
|
||||
{
|
||||
|
@ -1227,9 +1231,11 @@ static void SaveUiSettings()
|
|||
sApp.GetRecentIsoManager().Add(g_Conf->CurrentIso);
|
||||
|
||||
AppIniSaver saver;
|
||||
{
|
||||
wxSettingsInterface wxsi(&saver.GetConfig());
|
||||
SettingsSaveWrapper wrapper(wxsi);
|
||||
g_Conf->LoadSave(saver, wrapper);
|
||||
}
|
||||
ConLog_LoadSaveSettings(saver);
|
||||
SysTraceLog_LoadSaveSettings(saver);
|
||||
|
||||
|
@ -1239,10 +1245,12 @@ static void SaveUiSettings()
|
|||
static void SaveVmSettings()
|
||||
{
|
||||
std::unique_ptr<wxFileConfig> vmini(OpenFileConfig(GetVmSettingsFilename()));
|
||||
wxSettingsInterface wxsi(vmini.get());
|
||||
IniSaver vmsaver(vmini.get());
|
||||
{
|
||||
wxSettingsInterface wxsi(vmini.get());
|
||||
SettingsSaveWrapper vmwrapper(wxsi);
|
||||
g_Conf->EmuOptions.LoadSave(vmwrapper);
|
||||
}
|
||||
|
||||
sApp.DispatchVmSettingsEvent(vmsaver);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue