diff options
Diffstat (limited to 'src/yuzu/uisettings.h')
| -rw-r--r-- | src/yuzu/uisettings.h | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index c64d87ace..044d88ca6 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h | |||
| @@ -64,28 +64,28 @@ struct Values { | |||
| 64 | QByteArray gamelist_header_state; | 64 | QByteArray gamelist_header_state; |
| 65 | 65 | ||
| 66 | QByteArray microprofile_geometry; | 66 | QByteArray microprofile_geometry; |
| 67 | Settings::BasicSetting<bool> microprofile_visible{false, "microProfileDialogVisible"}; | 67 | Settings::Setting<bool> microprofile_visible{false, "microProfileDialogVisible"}; |
| 68 | 68 | ||
| 69 | Settings::BasicSetting<bool> single_window_mode{true, "singleWindowMode"}; | 69 | Settings::Setting<bool> single_window_mode{true, "singleWindowMode"}; |
| 70 | Settings::BasicSetting<bool> fullscreen{false, "fullscreen"}; | 70 | Settings::Setting<bool> fullscreen{false, "fullscreen"}; |
| 71 | Settings::BasicSetting<bool> display_titlebar{true, "displayTitleBars"}; | 71 | Settings::Setting<bool> display_titlebar{true, "displayTitleBars"}; |
| 72 | Settings::BasicSetting<bool> show_filter_bar{true, "showFilterBar"}; | 72 | Settings::Setting<bool> show_filter_bar{true, "showFilterBar"}; |
| 73 | Settings::BasicSetting<bool> show_status_bar{true, "showStatusBar"}; | 73 | Settings::Setting<bool> show_status_bar{true, "showStatusBar"}; |
| 74 | 74 | ||
| 75 | Settings::BasicSetting<bool> confirm_before_closing{true, "confirmClose"}; | 75 | Settings::Setting<bool> confirm_before_closing{true, "confirmClose"}; |
| 76 | Settings::BasicSetting<bool> first_start{true, "firstStart"}; | 76 | Settings::Setting<bool> first_start{true, "firstStart"}; |
| 77 | Settings::BasicSetting<bool> pause_when_in_background{false, "pauseWhenInBackground"}; | 77 | Settings::Setting<bool> pause_when_in_background{false, "pauseWhenInBackground"}; |
| 78 | Settings::BasicSetting<bool> mute_when_in_background{false, "muteWhenInBackground"}; | 78 | Settings::Setting<bool> mute_when_in_background{false, "muteWhenInBackground"}; |
| 79 | Settings::BasicSetting<bool> hide_mouse{true, "hideInactiveMouse"}; | 79 | Settings::Setting<bool> hide_mouse{true, "hideInactiveMouse"}; |
| 80 | // Set when Vulkan is known to crash the application | 80 | // Set when Vulkan is known to crash the application |
| 81 | Settings::BasicSetting<bool> has_broken_vulkan{false, "has_broken_vulkan"}; | 81 | Settings::Setting<bool> has_broken_vulkan{false, "has_broken_vulkan"}; |
| 82 | 82 | ||
| 83 | Settings::BasicSetting<bool> select_user_on_boot{false, "select_user_on_boot"}; | 83 | Settings::Setting<bool> select_user_on_boot{false, "select_user_on_boot"}; |
| 84 | 84 | ||
| 85 | // Discord RPC | 85 | // Discord RPC |
| 86 | Settings::BasicSetting<bool> enable_discord_presence{true, "enable_discord_presence"}; | 86 | Settings::Setting<bool> enable_discord_presence{true, "enable_discord_presence"}; |
| 87 | 87 | ||
| 88 | Settings::BasicSetting<bool> enable_screenshot_save_as{true, "enable_screenshot_save_as"}; | 88 | Settings::Setting<bool> enable_screenshot_save_as{true, "enable_screenshot_save_as"}; |
| 89 | 89 | ||
| 90 | QString roms_path; | 90 | QString roms_path; |
| 91 | QString symbols_path; | 91 | QString symbols_path; |
| @@ -100,25 +100,25 @@ struct Values { | |||
| 100 | // Shortcut name <Shortcut, context> | 100 | // Shortcut name <Shortcut, context> |
| 101 | std::vector<Shortcut> shortcuts; | 101 | std::vector<Shortcut> shortcuts; |
| 102 | 102 | ||
| 103 | Settings::BasicSetting<uint32_t> callout_flags{0, "calloutFlags"}; | 103 | Settings::Setting<uint32_t> callout_flags{0, "calloutFlags"}; |
| 104 | 104 | ||
| 105 | // logging | 105 | // logging |
| 106 | Settings::BasicSetting<bool> show_console{false, "showConsole"}; | 106 | Settings::Setting<bool> show_console{false, "showConsole"}; |
| 107 | 107 | ||
| 108 | // Game List | 108 | // Game List |
| 109 | Settings::BasicSetting<bool> show_add_ons{true, "show_add_ons"}; | 109 | Settings::Setting<bool> show_add_ons{true, "show_add_ons"}; |
| 110 | Settings::BasicSetting<uint32_t> game_icon_size{64, "game_icon_size"}; | 110 | Settings::Setting<uint32_t> game_icon_size{64, "game_icon_size"}; |
| 111 | Settings::BasicSetting<uint32_t> folder_icon_size{48, "folder_icon_size"}; | 111 | Settings::Setting<uint32_t> folder_icon_size{48, "folder_icon_size"}; |
| 112 | Settings::BasicSetting<uint8_t> row_1_text_id{3, "row_1_text_id"}; | 112 | Settings::Setting<uint8_t> row_1_text_id{3, "row_1_text_id"}; |
| 113 | Settings::BasicSetting<uint8_t> row_2_text_id{2, "row_2_text_id"}; | 113 | Settings::Setting<uint8_t> row_2_text_id{2, "row_2_text_id"}; |
| 114 | std::atomic_bool is_game_list_reload_pending{false}; | 114 | std::atomic_bool is_game_list_reload_pending{false}; |
| 115 | Settings::BasicSetting<bool> cache_game_list{true, "cache_game_list"}; | 115 | Settings::Setting<bool> cache_game_list{true, "cache_game_list"}; |
| 116 | Settings::BasicSetting<bool> favorites_expanded{true, "favorites_expanded"}; | 116 | Settings::Setting<bool> favorites_expanded{true, "favorites_expanded"}; |
| 117 | QVector<u64> favorited_ids; | 117 | QVector<u64> favorited_ids; |
| 118 | 118 | ||
| 119 | bool configuration_applied; | 119 | bool configuration_applied; |
| 120 | bool reset_to_defaults; | 120 | bool reset_to_defaults; |
| 121 | Settings::BasicSetting<bool> disable_web_applet{true, "disable_web_applet"}; | 121 | Settings::Setting<bool> disable_web_applet{true, "disable_web_applet"}; |
| 122 | }; | 122 | }; |
| 123 | 123 | ||
| 124 | extern Values values; | 124 | extern Values values; |