| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | settings: Use std::chrono::seconds instead of s64 for RTC | 2019-01-07 | 1 | -1/+2 | |
| | | |||||
| * | settings: Add custom RTC settings | 2019-01-07 | 1 | -2/+9 | |
| | | | | Stored as signed seconds since epoch. | ||||
| * | config: Store and load disabled add-ons list | 2018-12-03 | 1 | -0/+18 | |
| | | |||||
| * | Merge pull request #1747 from DarkLordZach/exefs-lfs | 2018-11-23 | 1 | -0/+1 | |
| |\ | | | | | patch_manager: Add support for applying LayeredFS patches to ExeFS | ||||
| | * | settings: Add option to dump ExeFS of games upon launch | 2018-11-20 | 1 | -0/+1 | |
| | | | | | | | | | When enabled, all exefs(es) will be copied to yuzu/dump/<title_id>/exefs. | ||||
| * | | configure_input_player: Set minimum width on controls | 2018-11-18 | 1 | -7/+6 | |
| | | | |||||
| * | | yuzu_cmd/config: Add config deserialization for multiplayer | 2018-11-18 | 1 | -37/+254 | |
| | | | |||||
| * | | Correctly sets default system language for yuzu-CLI (#1727) | 2018-11-18 | 1 | -0/+2 | |
| |/ | | | | | | | | | | * Correctly sets default system language for yuzu-CLI A user reported that yuzu_cmd runs games in Japanese rather than the correct default of English (like yuzu-qt does correctly), this change fixes that. * fix clang issue deleted whitespace | ||||
| * | Merge pull request #1618 from DarkLordZach/dump-nso | 2018-11-15 | 1 | -0/+1 | |
| |\ | | | | | patch_manager: Add support for dumping uncompressed NSOs | ||||
| | * | settings: Add setting to control NSO dumping | 2018-10-29 | 1 | -0/+1 | |
| | | | | | | | | | Also adds UI option in Debug > Dump section, with the idea later things to be dumped (i.e. other game data or textures, etc) will use the same group box. | ||||
| * | | settings: Add config option to set RNG seed | 2018-11-11 | 1 | -0/+7 | |
| |/ | |||||
| * | acc: Fix account UUID duplication error | 2018-10-23 | 1 | -2/+3 | |
| | | |||||
| * | profile_manager: Load user icons, names, and UUIDs from system save | 2018-10-23 | 1 | -18/+2 | |
| | | |||||
| * | settings: Add users and current_user settings and remove username | 2018-10-23 | 1 | -3/+19 | |
| | | |||||
| * | Added Amiibo support (#1390) | 2018-10-23 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed conflict with nfp * Few fixups for nfc * Conflict 2 * Fixed AttachAvailabilityChangeEvent * Conflict 3 * Fixed byte padding * Refactored amiibo to not reside in "System" * Removed remaining references of nfc from system * used enum for Nfc GetStateOld * Added missing newline * Moved file operations to front end * Conflict 4 * Amiibos now use structs and added mutexes * Removed amiibo_path | ||||
| * | config: Rename use_accurate_framebuffers -> use_accurate_gpu_emulation. | 2018-10-16 | 1 | -2/+2 | |
| | | | | | - This will be used as a catch-all for slow-but-accurate GPU emulation paths. | ||||
| * | cmd: Support passing game arguments from command line | 2018-10-07 | 1 | -0/+1 | |
| | | | | | Uses -p (--program) and following string as args. | ||||
| * | Port web_service from Citra | 2018-10-02 | 1 | -0/+8 | |
| | | |||||
| * | Update config.cpp | 2018-09-21 | 1 | -1/+1 | |
| | | |||||
| * | Invalid default value of username in yuzu_cmd (#1334) | 2018-09-18 | 1 | -0/+4 | |
| | | | | | | | | | | | * Fix bug where default username value for yuzu_cmd create an userprofile with uninitialize data as username * Fix format * Apply code review changes * Remove nullptr check | ||||
| * | Add audio stretching support | 2018-09-08 | 1 | -0/+2 | |
| | | |||||
| * | settings: Save and load NAND/SD dirs from config | 2018-09-03 | 1 | -0/+6 | |
| | | |||||
| * | Port #3353 from Citra | 2018-08-21 | 1 | -2/+3 | |
| | | |||||
| * | Remove files that are not used | 2018-08-01 | 1 | -0/+1 | |
| | | |||||
| * | audio_core: Add configuration settings. | 2018-07-31 | 1 | -0/+5 | |
| | | |||||
| * | file_util: Use an enum class for GetUserPath() | 2018-07-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | 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. | ||||
| * | settings: Turn docked mode off by default. | 2018-07-17 | 1 | -1/+1 | |
| | | |||||
| * | Rename logging macro back to LOG_* | 2018-07-02 | 1 | -3/+3 | |
| | | |||||
| * | settings: Add a configuration for use_accurate_framebuffers. | 2018-06-27 | 1 | -0/+2 | |
| | | |||||
| * | core: Add a configuration setting for use_multi_core. | 2018-05-10 | 1 | -0/+1 | |
| | | |||||
| * | frontends: Move logging macros over to new fmt-capable ones | 2018-04-26 | 1 | -3/+3 | |
| | | |||||
| * | config: Use simplified checkbox (from Citra) for CPU JIT. | 2018-03-26 | 1 | -2/+1 | |
| | | |||||
| * | config: Rename is_docked to use_docked_mode to be consistent with other ↵ | 2018-03-26 | 1 | -1/+1 | |
| | | | | | config bools. | ||||
| * | config: Add setting for whether the system is docked or not. | 2018-03-26 | 1 | -0/+3 | |
| | | |||||
| * | yuzu_cmd: change default cpu core to dynarmic | 2018-03-22 | 1 | -1/+1 | |
| | | |||||
| * | Format: Run the new clang format on everything | 2018-01-20 | 1 | -2/+10 | |
| | | |||||
| * | config: Default log filter to trace. | 2018-01-13 | 1 | -1/+1 | |
| | | |||||
| * | Remove settings issues in sdl and fix a few files that broke in mingw | 2018-01-12 | 1 | -47/+0 | |
| | | |||||
| * | Get yuzu sdl to start compiling | 2018-01-12 | 1 | -2/+3 | |
| | | |||||
| * | Massive removal of unused modules | 2018-01-12 | 1 | -0/+160 | |