Added gpu_refresh_rate config setting for the new interpreter speed hack.

This commit is contained in:
archshift 2014-10-27 18:56:08 -07:00
parent 0783498f57
commit 09e19f9f1e
5 changed files with 7 additions and 11 deletions

View file

@ -68,12 +68,14 @@ void Config::SaveControls() {
void Config::ReadCore() {
qt_config->beginGroup("Core");
Settings::values.cpu_core = qt_config->value("cpu_core", Core::CPU_Interpreter).toInt();
Settings::values.gpu_refresh_rate = qt_config->value("gpu_refresh_rate", 60).toInt();
qt_config->endGroup();
}
void Config::SaveCore() {
qt_config->beginGroup("Core");
qt_config->setValue("cpu_core", Settings::values.cpu_core);
qt_config->setValue("gpu_refresh_rate", Settings::values.gpu_refresh_rate);
qt_config->endGroup();
}