summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration
AgeCommit message (Collapse)Author
2018-09-10Port #4141 from citra: Joystick hotplug support (#1275)Tobias
* Joystick hotplug support (#4141) * use SDL_PollEvent instead of SDL_JoystickUpdate Register hot plugged controller by GUID if they were configured in a previous session * Move SDL_PollEvent into its own thread * Don't store SDLJoystick pointer in Input Device; Get pointer on each GetStatus call * Fix that joystick_list gets cleared after SDL_Quit * Add VirtualJoystick for InputDevices thats never nullptr * fixup! Add VirtualJoystick for InputDevices thats never nullptr * fixup! fixup! Add VirtualJoystick for InputDevices thats never nullptr * Remove SDL_GameController, make SDL_Joystick* unique_ptr * fixup! Remove SDL_GameController, make SDL_Joystick* unique_ptr * Adressed feedback; fixed handling of same guid reconnects * fixup! Adressed feedback; fixed handling of same guid reconnects * merge the two joystick_lists into one * make SDLJoystick a member of VirtualJoystick * fixup! make SDLJoystick a member of VirtualJoystick * fixup! make SDLJoystick a member of VirtualJoystick * fixup! fixup! make SDLJoystick a member of VirtualJoystick * SDLJoystick: Addressed review comments * Address one missed review comment
2018-09-10Remove multicore configure_general.uiMysticExile
2018-09-10remove multicore in configure_general.cppMysticExile
2018-09-03settings: Save and load NAND/SD dirs from configZach Hilman
2018-08-28yuzu: Fix stick UI direction orderfearlessTobi
2018-08-23qt: Make default row data title name and title idZach Hilman
Helps with installed games by making the title not a hexadecimal id string, instead the name.
2018-08-22Swap "Plus" with "Minus" on the controller GUI (#1150)literalmente-game
* Swap "Plus" with "Minus" on the controller GUI Major fix /s
2018-08-21config: Fixed icon size get set to 0tech4me
2018-08-21Port #3353 from CitrafearlessTobi
2018-08-08Merge pull request #850 from DarkLordZach/icon-metabunnei
Add Icons and Metadata Support
2018-08-07configure_gamelist: Use explicit QVariant constructorZach Hilman
2018-08-07qt/hotkey: Get rid of global hotkey map instanceLioncash
Instead, we make a proper registry class and house it within the main window, then pass it to whatever needs access to the loaded hotkeys. This way, we avoid a global variable, and don't need to initialize a std::map instance before the program can do anything.
2018-08-06Use const where applicableZach Hilman
2018-08-06Avoid parsing RomFS to directory in NCAZach Hilman
2018-08-06GDBStub works with both Unicorn and Dynarmic now (#941)Hedges
* GDBStub works with both Unicorn and Dynarmic now * Tidy up
2018-08-06qt: Default destructors where applicableLioncash
Makes code consistent with our style of defaulting special member functions where applicable.
2018-08-04Merge pull request #849 from DarkLordZach/xcibunnei
XCI and Encrypted NCA Support
2018-08-03Added ability to change username & language code in the settings ui. Added ↵David
IProfile::Get and SET::GetLanguageCode for libnx tests (#851)
2018-08-01Remove files that are not usedZach Hilman
2018-07-31audio_core: Add configuration settings.bunnei
2018-07-29Port #3911 from Citra: "Optimize settings application"fearlessTobi
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-02Add configurable logging backendsJames 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-03-30Remove whitespacesN00byKing
2018-03-30Add Dark theme, Icon themingN00byKing
configure_general.ui: Add UI Option for Themes config.cpp: Save Theme Settings
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-26configure_general: Cleanup naming.bunnei
2018-03-26qt: Add config option for is_docked.bunnei
2018-03-26config: Add setting for whether the system is docked or not.bunnei
2018-02-14pls, that was easyHexagon12
2018-01-20Format: Run the new clang format on everythingJames Rowe
2018-01-18Merge pull request #104 from RiverCityRansomware/resizedConfigWindowbunnei
Port citra #3336
2018-01-18ui: Rename almost all classes in configuration_input.ui (#99)Evgeni Danailov
* Rename verticalLayout_25 to verticalLayout_23. * Rename almost all classes.
2018-01-18Port citra #3336 - Resizes the configuration window to not be so stretched outRiver City Ransomware
2018-01-17Merge pull request #57 from nkatz565/fix-trbunnei
Fix non translated string (same as Citra PR 2949)
2018-01-17Fixed formattingnoah katz
2018-01-16Fix non translated string (same as Citra PR 2949)noah katz
2018-01-16Merge pull request #45 from FearlessTobi/patch-1bunnei
Implement Pull #3030 from Citra: Rename derivative class name
2018-01-16Merge pull request #53 from nkatz565/nk-fixlabelsbunnei
Implement Pull #3240 from Citra: Add button labels for sdl joystick mappings
2018-01-16Use static functions instead of lambdasmuemart
2018-01-16Add translation support for button labelsmuemart
2018-01-16Add button labels for sdl joystick mappingsmuemart
2018-01-16clang-formatMerryMage
2018-01-16Implement Pull #3030 from CitraTobias
citra-qt: Rename derivative class name
2018-01-16Merge pull request #24 from nkatz565/nk-inputsbunnei
Adding meumart's Citra SDL Joystick support. Citra PR #3116
2018-01-16Merge citra-emu PR#3001 by Styleoshin(citra-qt : Adding fullscreen mode)goaaats