Minor changes

This commit is contained in:
Nekotekina 2015-10-22 19:30:39 +03:00
parent d4e0da3f80
commit fd628d8345
11 changed files with 113 additions and 93 deletions

View file

@ -88,7 +88,7 @@ std::vector<std::string> GetAdapters()
SettingsDialog::SettingsDialog(wxWindow *parent, rpcs3::config_t* cfg)
: wxDialog(parent, wxID_ANY, "Settings", wxDefaultPosition)
{
const bool was_paused = Emu.Pause();
const bool was_running = Emu.Pause();
static const u32 width = 458;
static const u32 height = 400;
@ -541,5 +541,5 @@ SettingsDialog::SettingsDialog(wxWindow *parent, rpcs3::config_t* cfg)
Ini.Save();
}
if (was_paused) Emu.Resume();
if (was_running) Emu.Resume();
}