diff options
| author | 2016-08-15 23:30:02 -0400 | |
|---|---|---|
| committer | 2016-08-15 23:30:02 -0400 | |
| commit | 7b4dcacbb2006de6483e982b21956a8f3098aa1d (patch) | |
| tree | f8c5327c85614eeb0f0112b4a269edc4b7147b81 /src/citra_qt/config.cpp | |
| parent | qt: Use 5.7 on Windows. (diff) | |
| download | yuzu-7b4dcacbb2006de6483e982b21956a8f3098aa1d.tar.gz yuzu-7b4dcacbb2006de6483e982b21956a8f3098aa1d.tar.xz yuzu-7b4dcacbb2006de6483e982b21956a8f3098aa1d.zip | |
citra: Default to HW renderer.
Diffstat (limited to 'src/citra_qt/config.cpp')
| -rw-r--r-- | src/citra_qt/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/config.cpp b/src/citra_qt/config.cpp index 0e5f285c0..93c6a6e41 100644 --- a/src/citra_qt/config.cpp +++ b/src/citra_qt/config.cpp | |||
| @@ -45,7 +45,7 @@ void Config::ReadValues() { | |||
| 45 | qt_config->endGroup(); | 45 | qt_config->endGroup(); |
| 46 | 46 | ||
| 47 | qt_config->beginGroup("Renderer"); | 47 | qt_config->beginGroup("Renderer"); |
| 48 | Settings::values.use_hw_renderer = qt_config->value("use_hw_renderer", false).toBool(); | 48 | Settings::values.use_hw_renderer = qt_config->value("use_hw_renderer", true).toBool(); |
| 49 | Settings::values.use_shader_jit = qt_config->value("use_shader_jit", true).toBool(); | 49 | Settings::values.use_shader_jit = qt_config->value("use_shader_jit", true).toBool(); |
| 50 | Settings::values.use_scaled_resolution = qt_config->value("use_scaled_resolution", false).toBool(); | 50 | Settings::values.use_scaled_resolution = qt_config->value("use_scaled_resolution", false).toBool(); |
| 51 | 51 | ||