summaryrefslogtreecommitdiff
path: root/src/common/settings_enums.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* settings: Add cpu backend settingGravatar GPUCode2023-11-251-0/+2
|
* yuzu: Use new setting method for stop emulationGravatar Florian2023-10-121-0/+2
|
* general: Convert use_docked_mode to an enumerationGravatar lat9nq2023-08-221-0/+2
| | | | Allows some special interactions with it in the Qt frontend.
* general: fix apple clang buildGravatar Liam2023-08-091-8/+8
|
* core,common: Give memory layout setting an enumGravatar lat9nq2023-07-211-0/+2
| | | | Allows for 6GB and 8GB layouts to be selected.
* settings: Give indices to enumsGravatar lat9nq2023-07-211-6/+22
|
* settings_enums: Remove castingGravatar lat9nq2023-07-211-55/+55
| | | | | Not sure how I missed this earlier, but these vectors can be constructed using the type of the enum.
* settings,translation: Fix time zone enumGravatar lat9nq2023-07-211-4/+4
| | | | Renames enum values to conform to naming convention.
* settings,opengl,yuzu-qt: Fix AA, Filter maximumsGravatar lat9nq2023-07-211-2/+2
| | | | | | 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...
* settings_enums: More aggressively use macrosGravatar lat9nq2023-07-211-351/+149
| | | | | 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.
* general: Add typeinfo where neededGravatar lat9nq2023-07-211-0/+1
| | | | Using typeid without including typeinfo first produces an ill-formed program.
* settings_enums: Add const type where neededGravatar lat9nq2023-07-211-2/+2
|
* settings_enums: Cannonicalize settings namesGravatar lat9nq2023-07-211-2/+163
| | | | Gives every option of the enums a string literal via a macro.
* settings,general: Rename non-confirming enumsGravatar lat9nq2023-07-211-19/+18
|
* settings: Split enums to new fileGravatar lat9nq2023-07-211-0/+237