diff options
author | bunnei <bunneidev@gmail.com> | 2019-04-24 22:54:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 22:54:27 -0400 |
commit | 94db649205baadd0f325be5a56766850fc7421c7 (patch) | |
tree | e61fba516c66d2858d8846b10e030163619b243b /src/yuzu_cmd/config.cpp | |
parent | ee2252b6e13237f9c80a40379a18455832d01e33 (diff) | |
parent | 788497fd9d41bbfb82a1ac6816bee805a38e60cc (diff) |
Merge pull request #2424 from FernandoS27/compat
Allow picking a Compatibility Profile for OpenGL.
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
-rw-r--r-- | src/yuzu_cmd/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index f24cc77fe..d0ae058fd 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp @@ -349,6 +349,8 @@ void Config::ReadValues() { Settings::values.use_frame_limit = sdl2_config->GetBoolean("Renderer", "use_frame_limit", true); Settings::values.frame_limit = static_cast<u16>(sdl2_config->GetInteger("Renderer", "frame_limit", 100)); + Settings::values.use_compatibility_profile = + sdl2_config->GetBoolean("Renderer", "use_compatibility_profile", true); Settings::values.use_disk_shader_cache = sdl2_config->GetBoolean("Renderer", "use_disk_shader_cache", false); Settings::values.use_accurate_gpu_emulation = |