summaryrefslogtreecommitdiff
path: root/src/core/hle (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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 #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-162-1/+38
|\ \ | | | | | | FS: Improve emulation of device saves
| * | service: fsp_srv: Stub implementation of OpenMultiCommitManager.Gravatar bunnei2020-05-112-1/+38
| |/
* | nv_flinger: Use enum for pixel format instead of u32Gravatar David Marcec2020-05-162-3/+11
| |
* | 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
| |
* | 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-081-1/+1
| | | | | | | | | | | | | | | | | | | | | * 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
| | |
* | | 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.
* | | | | Merge pull request #3821 from ogniK5377/InitializeApplicationInfo-fixGravatar bunnei2020-05-012-22/+15
|\ \ \ \ \ | | | | | | | | | | | | acc: Fix InitializeApplicationInfo
| * | | | | acc: Fix InitializeApplicationInfoGravatar David Marcec2020-04-292-22/+15
| | |/ / / | |/| | | | | | | | | | | | | We're not suppose to pop a u64, should just read the sent pid and check that
* | | | | Merge pull request #3812 from ogniK5377/lisst-qualified-usersGravatar bunnei2020-05-015-3/+15
|\ \ \ \ \ | | | | | | | | | | | | account: ListQualifiedUsers
| * | | | | Updated comment to reflect ListQualifiedUsers betterGravatar David Marcec2020-04-291-1/+3
| | | | | |
| * | | | | account: ListQualifiedUsersGravatar David Marcec2020-04-295-3/+13
| | |_|/ / | |/| | | | | | | | | | | | | Closes #2844
* | | | | nvdrv: Fix GetGpuTime stack corruptionGravatar David Marcec2020-05-021-2/+3
| |_|_|/ |/| | | | | | | | | | | IoctlGetGpuTime should be 16 bytes, not 8.
* | | | Merge pull request #3823 from ogniK5377/setvrmodeGravatar Mat M2020-04-302-16/+6
|\ \ \ \ | | | | | | | | | | am: IsVrModeEnabled & SetVrModeEnabled fixes
| * | | | am: IsVrModeEnabled & SetVrModeEnabled fixesGravatar David Marcec2020-04-292-16/+6
| | |/ / | |/| | | | | | | | | | | | | | Return the proper state of vr mode for IsVrModeEnabled We should not return an error for SetVrModeEnabled. When VR Mode is turned on, it signals to lbl to turn vr mode on, not return an error code
* | | | Merge pull request #3830 from ogniK5377/GetFriendInvitationStorageChannelEventGravatar Mat M2020-04-302-1/+14
|\ \ \ \ | | | | | | | | | | am: GetFriendInvitationStorageChannelEvent
| * | | | am: GetFriendInvitationStorageChannelEventGravatar David Marcec2020-04-302-1/+14
| |/ / / | | | | | | | | | | | | Closes #3829
* | | | Merge pull request #3835 from ogniK5377/GetFreeSpaceSize-GetTotalSpaceSizeGravatar Mat M2020-04-301-2/+2
|\ \ \ \ | | | | | | | | | | fs-srv: GetFreeSpaceSize & GetTotalSpaceSize
| * | | | fs-srv: GetFreeSpaceSize & GetTotalSpaceSizeGravatar David Marcec2020-04-301-2/+2
| |/ / / | | | | | | | | | | | | | | | | | | | | Closes #3533 Turns out the functions were already implemented but just never added
* | | | Merge pull request #3832 from ogniK5377/nim-eca-CreateServerInterfaceGravatar Mat M2020-04-301-1/+69
|\ \ \ \ | | | | | | | | | | nim: CreateServerInterface, CreateAccessorInterface, CreateAsyncInterface