summaryrefslogtreecommitdiff
path: root/src/common/settings_common.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: add default configurations for applet modeGravatar Liam2024-02-091-0/+1
|
* Fix more typosGravatar Viktor Szépe2024-01-151-1/+1
|
* android: Migrate in-game overlay settings to iniGravatar t8952023-12-301-0/+1
|
* android: Add per-game driversGravatar t8952023-12-121-0/+1
|
* yuzu: create linux group in general settingsGravatar flodavid2023-11-251-0/+1
| | | | | - Create files dedicated to starting and stopping gamemode functions - Use them in yuzu and yuzu_cmd modules
* yuzu: Save mute when in background settingGravatar Narr the Reg2023-11-101-0/+1
|
* settings_common: Fix typoGravatar lat9nq2023-09-141-1/+1
|
* settings: Retro-port Citra Settings workGravatar lat9nq2023-09-131-0/+10
| | | | | This has yet to be PR'd on Citra, but regressions on yuzu that have been fixed in Citra needed to appear here.
* android: Expose interface for getting settings from native codeGravatar Charles Lombardo2023-08-291-0/+2
| | | | Completely removes code related to parsing the settings file on the java side. Now all settings are accessed via NativeConfig.kt and config.cpp has been modified to be closer to the core counterpart. Since the core currently uses QSettings, we can't remove reliance from Wini yet. This also includes simplifications to each settings interface to get closer to native code and prepare for per-game settings.
* general: Convert use_docked_mode to an enumerationGravatar lat9nq2023-08-221-0/+1
| | | | Allows some special interactions with it in the Qt frontend.
* settings_common: Document specializationsGravatar lat9nq2023-07-231-9/+10
|
* common,qt-config: Remove usage of forward_listGravatar lat9nq2023-07-211-1/+0
|
* settings_common: Use a vector in category linkageGravatar lat9nq2023-07-211-1/+1
| | | | Improve storage requirements.
* common: Move global configuration state modifiers back to settingsGravatar lat9nq2023-07-211-3/+0
|
* common,configure_system: Rename method to GetCategoryGravatar lat9nq2023-07-211-4/+4
| | | | Fixes essentially a shadowing issue.
* settings: Give indices to enumsGravatar lat9nq2023-07-211-0/+5
|
* settings_common: Remove unncessary enum specGravatar lat9nq2023-07-211-2/+2
|
* settings,configuration: Add a default suffixGravatar lat9nq2023-07-211-14/+19
|
* settings: Define paired settingsGravatar lat9nq2023-07-211-2/+9
| | | | settings_common: Remove unused optional
* settings: Define specializations for settingsGravatar lat9nq2023-07-211-1/+19
| | | | Suggests to a frontend how to represent each setting.
* common,yuzu-qt: GCC warning silencesGravatar lat9nq2023-07-211-1/+1
| | | | Fixes -Wshadow, -Wdeprecated, and catch by copy rather than by ref.
* settings: Document BasicSetting, add RangedGravatar lat9nq2023-07-211-9/+106
|
* settings: Move IsConfiguringGlobal to settings_commonGravatar lat9nq2023-07-211-0/+3
|
* settings: Move some simple data to BasicSettingGravatar lat9nq2023-07-211-25/+71
| | | | | Reduces the need for the compiler to duplicate this code, by about 100KB executable size.
* (ui,)settings: Use explicit instantiationGravatar lat9nq2023-07-211-0/+78
Reduces compile times a tad on clang.