summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd/config.cpp
AgeCommit message (Collapse)Author
2018-08-01Remove files that are not usedZach Hilman
2018-07-31audio_core: Add configuration settings.bunnei
2018-07-21file_util: Use an enum class for GetUserPath()Lioncash
Instead of using an unsigned int as a parameter and expecting a user to always pass in the correct values, we can just convert the enum into an enum class and use that type as the parameter type instead, which makes the interface more type safe. We also get rid of the bookkeeping "NUM_" element in the enum by just using an unordered map. This function is generally low-frequency in terms of calls (and I'd hope so, considering otherwise would mean we're slamming the disk with IO all the time) so I'd consider this acceptable in this case.
2018-07-17settings: Turn docked mode off by default.bunnei
2018-07-02Rename logging macro back to LOG_*James Rowe
2018-06-27settings: Add a configuration for use_accurate_framebuffers.bunnei
2018-05-10core: Add a configuration setting for use_multi_core.bunnei
2018-04-26frontends: Move logging macros over to new fmt-capable onesLioncash
2018-03-26config: Use simplified checkbox (from Citra) for CPU JIT.bunnei
2018-03-26config: Rename is_docked to use_docked_mode to be consistent with other ↵bunnei
config bools.
2018-03-26config: Add setting for whether the system is docked or not.bunnei
2018-03-22yuzu_cmd: change default cpu core to dynarmicValentin Vanelslande
2018-01-20Format: Run the new clang format on everythingJames Rowe
2018-01-13config: Default log filter to trace.bunnei
2018-01-12Remove settings issues in sdl and fix a few files that broke in mingwJames Rowe
2018-01-12Get yuzu sdl to start compilingJames Rowe
2018-01-12Massive removal of unused modulesJames Rowe