summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-07-21settings: Require time zone setting value for stirnglat9nq
2023-07-21shared_translation: Add missing time zoneslat9nq
2023-07-21shared_translation: Add controller_applet_disabledlat9nq
2023-07-21shared_translation: Add barrier_feedback_loopslat9nq
2023-07-21cmake: Reposition preprocessor switch commenttoast2903
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
2023-07-21configuration: Use enum indexlat9nq
2023-07-21settings: Give indices to enumslat9nq
2023-07-21cmake: Use standard preprocessor on MSVClat9nq
2023-07-21settings_common: Remove unncessary enum speclat9nq
2023-07-21shared_translation: Deobfuscate auto time zonelat9nq
2023-07-21settings_enums: Remove castinglat9nq
Not sure how I missed this earlier, but these vectors can be constructed using the type of the enum.
2023-07-21settings_setting: Silence shadowing warningslat9nq
2023-07-21settings,configuration: Add a default suffixlat9nq
2023-07-21configuration: Use paired settingslat9nq
2023-07-21settings: Define paired settingslat9nq
settings_common: Remove unused optional
2023-07-21shared_widget: Internalize component restoringlat9nq
2023-07-21configuration: Use specialization of settingslat9nq
Reduces some ugliness in frontend code.
2023-07-21settings: Define specializations for settingslat9nq
Suggests to a frontend how to represent each setting.
2023-07-21configuration: Use a builder to create widgetslat9nq
This gets rid of some repeated code and sets us up to send more information to the new widget.
2023-07-21shared_translation: Fix context usagelat9nq
Currently unused, but I don't want to start headaches when someone decides to use it the first time.
2023-07-21settings,translation: Fix time zone enumlat9nq
Renames enum values to conform to naming convention.
2023-07-21settings,opengl,yuzu-qt: Fix AA, Filter maximumslat9nq
The new enum macros don't support setting values directly. For LastAA and LastFilter, this means we need a simpler approach to loop around the toggle in the frontend...
2023-07-21settings_enums: More aggressively use macroslat9nq
This lets us define an enum and all the textual representations of its values in one swing. All for the price of some ugly macros.
2023-07-21config_shared: Remove storing the group from tablat9nq
2023-07-21settings,uisettings: Remove leading underscorelat9nq
2023-07-21configuration: Move speed_limit to corelat9nq
2023-07-21settings: Move speed_limit to corelat9nq
2023-07-21android-config: Update enum labelslat9nq
2023-07-21common,yuzu-qt: Avoid explicit instantiation on old clanglat9nq
Clang versions < 15 have compile issues with explicit instantiation. Disable it for these versions.
2023-07-21settings_setting: Fix MSVC errorlat9nq
2023-07-21codespellrc: Ignore canonicalizationslat9nq
2023-07-21shared_widget: Correct spellinglat9nq
2023-07-21(android)config: Clang formatlat9nq
2023-07-21common,yuzu-qt: GCC warning silenceslat9nq
Fixes -Wshadow, -Wdeprecated, and catch by copy rather than by ref.
2023-07-21configure_graphics: Simplify UpdateAPILayoutlat9nq
Reduces branching/swictch cases for simplicity/code size
2023-07-21configure_graphcs: Fix setting shader/device in custom configlat9nq
2023-07-21configuration: Use shorter constructor as neededlat9nq
Reduces some confusion hopefully, since some parameters specified were not specific to the setting in question.
2023-07-21shared_widget: Some documentation, add shorter constructorlat9nq
The shorter constructor enables us to specify some options without needing to specify the default values of multiplier which wasn't always appropriate and could be confusing.
2023-07-21config: Remove unused functionslat9nq
2023-07-21settings: Delete cpu_accuracy_first_timelat9nq
Almost a 2 year old migration setting now
2023-07-21shared_widget: Improve logging, use Setting::Rangedlat9nq
2023-07-21settings: Document BasicSetting, add Rangedlat9nq
2023-07-21settings: Move IsConfiguringGlobal to settings_commonlat9nq
2023-07-21configuration/shared: Clean up includes [IWYU]lat9nq
2023-07-21configure_graphics: Fix vulkan_device buglat9nq
2023-07-21settings: Move some simple data to BasicSettinglat9nq
Reduces the need for the compiler to duplicate this code, by about 100KB executable size.
2023-07-21settings_setting: Fix errorslat9nq
ToString didn't have a constexpr if statement where needed. Canonicalize missed an else, causing unreachable code error on MSVC.
2023-07-21(ui,)settings: Use explicit instantiationlat9nq
Reduces compile times a tad on clang.
2023-07-21settings: Remove redundant false literalslat9nq
2023-07-21shared_widget: Avoid calling QWidgetPrivate::setVisiblelat9nq
This particular setVisible function is unnecessary. It also has horrible runtime performance, so much that it consumed maybe 80% of the time used to create a widget.