diff options
author | lat9nq <[email protected]> | 2022-07-10 16:10:35 -0400 |
---|---|---|
committer | lat9nq <[email protected]> | 2022-07-10 16:52:00 -0400 |
commit | 33abdfff9bf0a549b0d1d327e914e9a1ab4b799b (patch) | |
tree | 60b91393706a3ddec37f10395a7fe1e3d69c20ad /src/yuzu/uisettings.h | |
parent | 4f15d9ed6fba4fa1804c5be3f9378e3ad3d32688 (diff) | |
download | yuzu-android-33abdfff9bf0a549b0d1d327e914e9a1ab4b799b.tar.gz yuzu-android-33abdfff9bf0a549b0d1d327e914e9a1ab4b799b.zip |
yuzu: Simplify broken Vulkan handling
Diffstat (limited to 'src/yuzu/uisettings.h')
-rw-r--r-- | src/yuzu/uisettings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index 044d88ca6..2f6948243 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -78,7 +78,7 @@ struct Values { Settings::Setting<bool> mute_when_in_background{false, "muteWhenInBackground"}; Settings::Setting<bool> hide_mouse{true, "hideInactiveMouse"}; // Set when Vulkan is known to crash the application - Settings::Setting<bool> has_broken_vulkan{false, "has_broken_vulkan"}; + bool has_broken_vulkan = false; Settings::Setting<bool> select_user_on_boot{false, "select_user_on_boot"}; |