diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-11-01 20:27:12 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-11-01 20:27:12 -0400 |
commit | 2d2ef05d8c5d476a17ef30609ed055ec0aa75609 (patch) | |
tree | 712f3b6a66af6ded95f71523ee9ce9a04b3d2305 /src/yuzu/ui_settings.h | |
parent | 8f183a47dd3dca5247b893960afd09b6f603ae87 (diff) |
game_list: Make add-ons column optional
As the add-ons column takes the most processing time out of any (as it needs to search registration for updates/dlc, patch control NCAs, search for mods, etc.), an option was added to disable it. This does not affect the application of add-ons. In large game collections, this decreases game list refresh time by as much as 70%.
Diffstat (limited to 'src/yuzu/ui_settings.h')
-rw-r--r-- | src/yuzu/ui_settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/ui_settings.h b/src/yuzu/ui_settings.h index 2e617d52a..32a0d813c 100644 --- a/src/yuzu/ui_settings.h +++ b/src/yuzu/ui_settings.h @@ -59,6 +59,7 @@ struct Values { // Game List bool show_unknown; + bool show_add_ons; uint32_t icon_size; uint8_t row_1_text_id; uint8_t row_2_text_id; |