core: Consolidate top-level system state into a singleton.

This commit is contained in:
bunnei 2016-11-04 23:14:38 -04:00
parent 81e22ae8c7
commit 198b6c9bdd
8 changed files with 167 additions and 106 deletions

View file

@ -14,7 +14,7 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent)
ui->setupUi(this);
this->setConfiguration();
ui->toggle_cpu_jit->setEnabled(!System::IsPoweredOn());
ui->toggle_cpu_jit->setEnabled(!Core::System::GetInstance().IsPoweredOn());
}
ConfigureGeneral::~ConfigureGeneral() {}