| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | settings_setting: Read audio engine | 2023-09-25 | 1 | -0/+2 | |
| | | | | | | This was mysteriously missing, likely from when I ported Citra fixes semi-recently. | ||||
| * | settings_setting: Don't remove the AudioEngine workaround | 2023-09-13 | 1 | -0/+3 | |
| | | |||||
| * | settings: Retro-port Citra Settings work | 2023-09-13 | 1 | -8/+28 | |
| | | | | | | This has yet to be PR'd on Citra, but regressions on yuzu that have been fixed in Citra needed to appear here. | ||||
| * | general: fix apple clang build | 2023-08-09 | 1 | -5/+5 | |
| | | |||||
| * | settings_setting: Fix typo | 2023-07-21 | 1 | -4/+4 | |
| | | |||||
| * | common,configure_system: Rename method to GetCategory | 2023-07-21 | 1 | -2/+2 | |
| | | | | | Fixes essentially a shadowing issue. | ||||
| * | settings: Cleanup | 2023-07-21 | 1 | -30/+47 | |
| | | | | | | | Addresses review feedback Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com> | ||||
| * | settings: Give indices to enums | 2023-07-21 | 1 | -0/+9 | |
| | | |||||
| * | settings_setting: Silence shadowing warnings | 2023-07-21 | 1 | -17/+18 | |
| | | |||||
| * | settings,configuration: Add a default suffix | 2023-07-21 | 1 | -9/+6 | |
| | | |||||
| * | settings: Define paired settings | 2023-07-21 | 1 | -11/+18 | |
| | | | | | settings_common: Remove unused optional | ||||
| * | settings: Define specializations for settings | 2023-07-21 | 1 | -10/+17 | |
| | | | | | Suggests to a frontend how to represent each setting. | ||||
| * | settings_setting: Fix MSVC error | 2023-07-21 | 1 | -1/+1 | |
| | | |||||
| * | common,yuzu-qt: GCC warning silences | 2023-07-21 | 1 | -6/+8 | |
| | | | | | Fixes -Wshadow, -Wdeprecated, and catch by copy rather than by ref. | ||||
| * | settings: Document BasicSetting, add Ranged | 2023-07-21 | 1 | -0/+4 | |
| | | |||||
| * | settings: Move some simple data to BasicSetting | 2023-07-21 | 1 | -75/+11 | |
| | | | | | | Reduces the need for the compiler to duplicate this code, by about 100KB executable size. | ||||
| * | settings_setting: Fix errors | 2023-07-21 | 1 | -2/+3 | |
| | | | | | | ToString didn't have a constexpr if statement where needed. Canonicalize missed an else, causing unreachable code error on MSVC. | ||||
| * | (ui,)settings: Use explicit instantiation | 2023-07-21 | 1 | -0/+413 | |
| Reduces compile times a tad on clang. | |||||