summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #4002 from lat9nq/fix-nix-mod-directoriesGravatar bunnei2020-05-282-8/+31
|\ | | | | patch_manager: Add support for case-sensitivity on Linux
| * Make copying directory string more conciseGravatar lat9nq2020-05-281-2/+1
| |
| * Address requested changesGravatar lat9nq2020-05-282-4/+4
| |
| * *nix systems can read any-case patch directoriesGravatar lat9nq2020-05-272-8/+32
| | | | | | | | | | | | Changes many patch_manager functions to use a case-less variant of GetSubdirectory. Fixes patches not showing up on *nix systems when patch directories are named with odd cases, i.e. `exeFS'.
* | Merge pull request #3964 from ReinUsesLisp/arb-integrationGravatar bunnei2020-05-243-0/+3
|\ \ | | | | | | renderer_opengl: Add assembly program code paths
| * | yuzu: Add frontend settings for assembly shadersGravatar ReinUsesLisp2020-05-193-0/+3
| | | | | | | | | | | | | | | Add settings for assembly shaders. Currently hidden to avoid users from accidentally enabled them.
* | | clang-formatGravatar VolcaEM2020-05-211-1/+2
| | |
* | | nifm: correct assert in CreateTemporaryNetworkProfileGravatar VolcaEM2020-05-211-1/+1
| |/ |/| | | | | | | | | | | | | | | This has been wrong since https://github.com/yuzu-emu/yuzu/commit/0432af5ad1ec34f02071f6fdc5fc78149b059f18 I haven't found a game that called this function (and I haven't tried this on a real Switch), and because of this I haven't been able to check if the number in assert OR the string in the assert is wrong, but one of the two is wrong: NetworkProfileData is 0x18E, while SfNetworkProfileData is 0x17C, according to Switchbrew Switchbrew doesn't officially say that NetworkProfileData's size is 0x18E but it's possible to calculate its size since Switchbrew provides the size and the offset of all the components of NetworkProfileData (which isn't currently implemented in yuzu, alongside SfNetworkProfileData) NetworkProfileData documentation: https://switchbrew.org/wiki/Network_Interface_services#NetworkProfileData SfNetworkProfileData documentation: https://switchbrew.org/wiki/Network_Interface_services#SfNetworkProfileData Since I trust ogniK's work on reversing NIFM, I'd assume this was just a typo in the string
* | Merge pull request #3946 from ogniK5377/sysverdat-10-0-2Gravatar bunnei2020-05-201-7/+7
|\ \ | | | | | | file_sys: Update SystemVersion archive to version 10.0.2
| * | file_sys: Update SystemVersion archive to version 10.0.2Gravatar David Marcec2020-05-161-7/+7
| | |
* | | Merge pull request #3926 from ogniK5377/keyboard-statesGravatar bunnei2020-05-191-3/+4
|\ \ \ | |_|/ |/| | hid: Clear keyboard states & fix logic issue
| * | hid: Clear keyboard states & fix logic issueGravatar David Marcec2020-05-121-3/+4
| | | | | | | | | | | | Previously we never cleared the states of the entries and the key would stay held down, also looping over the key bytes for each key lead to setting every bit for the key state instead of the key we wanted
* | | Merge pull request #3665 from bunnei/device-saveGravatar bunnei2020-05-165-4/+49
|\ \ \ | | | | | | | | FS: Improve emulation of device saves
| * | | service: fsp_srv: Stub implementation of OpenMultiCommitManager.Gravatar bunnei2020-05-112-1/+38
| | | |
| * | | file_sys: savefata_factory: Update to support DeviceSaveData.Gravatar bunnei2020-05-111-3/+6
| | | |
| * | | file_sys: control_metadata: Expose device_save_data_size.Gravatar bunnei2020-05-112-0/+5
| |/ /
* | / nv_flinger: Use enum for pixel format instead of u32Gravatar David Marcec2020-05-162-3/+11
| |/ |/|
* | frontend: Set minimum window size to 640x360 instead of 1280x720 (#3413)Gravatar Morph2020-05-152-1/+6
| |
* | time_zone: Use std::chrono::seconds for strong typing.Gravatar bunnei2020-05-121-1/+1
| |
* | hle: service: time_zone_manager: Use current time zone setting.Gravatar bunnei2020-05-112-3/+32
| |
* | core: settings: Add a setting for time zone.Gravatar bunnei2020-05-112-0/+20
| |
* | Stub SendKeyboardLockKeyEventGravatar David Marcec2020-05-122-1/+11
|/ | | | Needed for Puchikon 4 SmileBASIC 1.0.0
* Replace externals with Conan (#3735)Gravatar James Rowe2020-05-083-4/+5
| | | | | | | | | | | | | | | | | | | | | * Remove git submodules that will be loaded through conan * Move custom Find modules to their own folder * Use conan for downloading missing external dependencies * CI: Change the yuzu source folder user to the user that the containers run on * Attempt to remove dirty mingw build hack * Install conan on the msvc build * Only set release build type when using not using multi config generator * Re-add qt bundled to workaround an issue with conan qt not downloading prebuilt binaries * Add workaround for submodules that use legacy CMAKE variables * Re-add USE_BUNDLED_QT on the msvc build bot
* Merge pull request #3879 from lioncash/global2Gravatar bunnei2020-05-073-10/+16
|\ | | | | hle_ipc: Eliminate core memory globals
| * hle_ipc: Eliminate core memory globalsGravatar Lioncash2020-05-033-10/+16
| | | | | | | | | | We can just pass the required instances into the constructor of the request, eliminating all usages of the global system accessor.
* | Merge pull request #3881 from lioncash/mem-warningGravatar bunnei2020-05-0511-23/+11
|\ \ | | | | | | kernel/memory: Resolve several compiler warnings
| * | kernel/memory: Remove #pragma once within cpp fileGravatar Lioncash2020-05-031-2/+0
| | | | | | | | | | | | This isn't necessary in a cpp file and will cause warnings on clang.
| * | kernel/memory: Remove unused includesGravatar Lioncash2020-05-037-8/+1
| | | | | | | | | | | | | | | Prevents header churn and needing to recompile these files if these headers are ever changed in the future.
| * | kernel/memory: Remove unused variables in memory_block_managerGravatar Lioncash2020-05-031-3/+0
| | | | | | | | | | | | Prevents unused variable warnings.
| * | kernel/memory: Make use of std::array consistently in address_space_infoGravatar Lioncash2020-05-031-6/+6
| | | | | | | | | | | | | | | This allows tuning standard library implementations to enable or disable range checks at runtime, which is nicer for debugging.
| * | kernel/memory: Resolve -Wshadow warningsGravatar Lioncash2020-05-031-4/+4
| |/ | | | | | | Prevents variable name clashing.
* | Merge pull request #3880 from lioncash/encodingGravatar bunnei2020-05-046-12/+12
|\ \ | | | | | | kernel/memory: Amend potential encoding warnings
| * | kernel/memory: Amend potential encoding warningsGravatar Lioncash2020-05-036-12/+12
| |/ | | | | | | | | | | | | While èis generally representable in some language encodings, in some it isn't and will result in compilation warnings occurring. To remain friendly with other language's codepages on Windows, we normalize it to an ASCII e.
* | Merge pull request #3843 from ogniK5377/GetPopFromGeneralChannelEventGravatar bunnei2020-05-043-4/+20
|\ \ | | | | | | am: IHomeMenuFunctions:GetPopFromGeneralChannelEvent
| * | am: IHomeMenuFunctions:GetPopFromGeneralChannelEventGravatar David Marcec2020-05-013-4/+20
| | | | | | | | | | | | QLaunch 1.0.0
* | | Merge pull request #3822 from ogniK5377/GetAccountIdGravatar bunnei2020-05-031-5/+8
|\ \ \ | |_|/ |/| | acc: Return a unique value per account for GetAccountId
| * | acc: Return a unique value per account for GetAccountIdGravatar David Marcec2020-04-291-5/+8
| | |
* | | settings: Add anisotropic filtering level to the yuzu configuration log (#3875)Gravatar Morph2020-05-031-0/+1
| | |
* | | Merge pull request #3871 from lioncash/semiGravatar bunnei2020-05-021-4/+6
|\ \ \ | | | | | | | | readable_event: Remove unnecessary semicolon in Signal()
| * | | readable_event: Remove unnecessary semicolon in Signal()Gravatar Lioncash2020-05-021-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolves a -Wextra-semi warning. While we're at it, we can invert the branch to form a guard clause, unindenting all of the contained code.
* | | | Merge pull request #3824 from ogniK5377/GetDisplayVersionGravatar bunnei2020-05-021-3/+14
|\ \ \ \ | |/ / / |/| | | am: Properly implement GetDisplayVersion
| * | | Update src/core/hle/service/am/am.cppGravatar bunnei2020-05-021-1/+1
| | | | | | | | | | | | Co-authored-by: Mat M. <mathew1800@gmail.com>
| * | | am: Properly implement GetDisplayVersionGravatar David Marcec2020-04-291-3/+14
| |/ / | | | | | | | | | Properly implement IApplicationFunctions::GetDisplayVersion
* | | Merge pull request #3811 from ogniK5377/audin-initGravatar bunnei2020-05-022-5/+94
|\ \ \ | | | | | | | | audin:u: ListAudioIns, OpenAudioIn, ListAudioInsAuto, OpenAudioInAuto, ListAudioInsAutoFiltered, OpenAudioInProtocolSpecified
| * | | marked stubsGravatar David Marcec2020-04-291-4/+5
| | | |
| * | | Audin:u ListAudioIns, OpenAudioIn, ListAudioInsAuto, OpenAudioInAuto, ↵Gravatar David Marcec2020-04-292-5/+93
| | | | | | | | | | | | | | | | | | | | | | | | ListAudioInsAutoFiltered, OpenAudioInProtocolSpecified Closes #2874
* | | | Merge pull request #3819 from ogniK5377/err-log2Gravatar bunnei2020-05-027-0/+51
|\ \ \ \ | | | | | | | | | | kernel: Don't fail silently
| * | | | kernel: Don't fail silentlyGravatar David Marcec2020-04-297-0/+51
| | |/ / | |/| |
* | | | Merge pull request #3833 from qwell/caps_su-32-stubGravatar bunnei2020-05-012-1/+13
|\ \ \ \ | | | | | | | | | | Add stub for caps:su SetShimLibraryVersion
| * | | | caps:su Stub out SetShimLibraryVersionGravatar Jason Parker2020-04-302-1/+13
| | | | | | | | | | | | | | | | | | | | Used by Animal Crossing: New Horizons when trying to take a picture.