aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2020-05-04Merge pull request #3843 from ogniK5377/GetPopFromGeneralChannelEventbunnei
am: IHomeMenuFunctions:GetPopFromGeneralChannelEvent
2020-05-03Merge pull request #3822 from ogniK5377/GetAccountIdbunnei
acc: Return a unique value per account for GetAccountId
2020-05-03kernel/memory: Remove #pragma once within cpp fileLioncash
This isn't necessary in a cpp file and will cause warnings on clang.
2020-05-03kernel/memory: Remove unused includesLioncash
Prevents header churn and needing to recompile these files if these headers are ever changed in the future.
2020-05-03kernel/memory: Remove unused variables in memory_block_managerLioncash
Prevents unused variable warnings.
2020-05-03kernel/memory: Make use of std::array consistently in address_space_infoLioncash
This allows tuning standard library implementations to enable or disable range checks at runtime, which is nicer for debugging.
2020-05-03kernel/memory: Resolve -Wshadow warningsLioncash
Prevents variable name clashing.
2020-05-03kernel/memory: Amend potential encoding warningsLioncash
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.
2020-05-03hle_ipc: Eliminate core memory globalsLioncash
We can just pass the required instances into the constructor of the request, eliminating all usages of the global system accessor.
2020-05-03settings: Add anisotropic filtering level to the yuzu configuration log (#3875)Morph
2020-05-02Merge pull request #3871 from lioncash/semibunnei
readable_event: Remove unnecessary semicolon in Signal()
2020-05-02Merge pull request #3824 from ogniK5377/GetDisplayVersionbunnei
am: Properly implement GetDisplayVersion
2020-05-02Update src/core/hle/service/am/am.cppbunnei
Co-authored-by: Mat M. <mathew1800@gmail.com>
2020-05-02readable_event: Remove unnecessary semicolon in Signal()Lioncash
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.
2020-05-02Merge pull request #3811 from ogniK5377/audin-initbunnei
audin:u: ListAudioIns, OpenAudioIn, ListAudioInsAuto, OpenAudioInAuto, ListAudioInsAutoFiltered, OpenAudioInProtocolSpecified
2020-05-02Merge pull request #3819 from ogniK5377/err-log2bunnei
kernel: Don't fail silently
2020-05-01Merge pull request #3833 from qwell/caps_su-32-stubbunnei
Add stub for caps:su SetShimLibraryVersion
2020-05-01Merge pull request #3821 from ogniK5377/InitializeApplicationInfo-fixbunnei
acc: Fix InitializeApplicationInfo
2020-05-01Merge pull request #3812 from ogniK5377/lisst-qualified-usersbunnei
account: ListQualifiedUsers
2020-05-02nvdrv: Fix GetGpuTime stack corruptionDavid Marcec
IoctlGetGpuTime should be 16 bytes, not 8.
2020-05-01am: IHomeMenuFunctions:GetPopFromGeneralChannelEventDavid Marcec
QLaunch 1.0.0
2020-04-30caps:su Stub out SetShimLibraryVersionJason Parker
Used by Animal Crossing: New Horizons when trying to take a picture.
2020-04-30Merge pull request #3823 from ogniK5377/setvrmodeMat M
am: IsVrModeEnabled & SetVrModeEnabled fixes
2020-04-30Merge pull request #3830 from ogniK5377/GetFriendInvitationStorageChannelEventMat M
am: GetFriendInvitationStorageChannelEvent
2020-04-30Merge pull request #3835 from ogniK5377/GetFreeSpaceSize-GetTotalSpaceSizeMat M
fs-srv: GetFreeSpaceSize & GetTotalSpaceSize
2020-04-30Merge pull request #3832 from ogniK5377/nim-eca-CreateServerInterfaceMat M
nim: CreateServerInterface, CreateAccessorInterface, CreateAsyncInterface
2020-04-30Merge pull request #3831 from ogniK5377/caps-su-namesMat M
caps: Add missing service names to caps:su
2020-04-30fs-srv: GetFreeSpaceSize & GetTotalSpaceSizeDavid Marcec
Closes #3533 Turns out the functions were already implemented but just never added
2020-04-30nim: CreateServerInterface, CreateAccessorInterface, CreateAsyncInterfaceDavid Marcec
Closes #3026
2020-04-30caps: Add missing service names to caps:suDavid Marcec
SetShimLibraryVersion, SaveScreenShotEx1 & SaveScreenShotEx2 were missing
2020-04-30am: GetFriendInvitationStorageChannelEventDavid Marcec
Closes #3829
2020-04-29psm: Mark as debug instead of warningDavid Marcec
No point to emulate battery life. However options are broken out if we ever want to add a setting for it
2020-04-29am: Properly implement GetDisplayVersionDavid Marcec
Properly implement IApplicationFunctions::GetDisplayVersion
2020-04-29am: IsVrModeEnabled & SetVrModeEnabled fixesDavid Marcec
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
2020-04-29acc: Return a unique value per account for GetAccountIdDavid Marcec
2020-04-29acc: Fix InitializeApplicationInfoDavid Marcec
We're not suppose to pop a u64, should just read the sent pid and check that
2020-04-29kernel: Don't fail silentlyDavid Marcec
2020-04-28Merge pull request #3818 from ogniK5377/err-logMat M
Don't fail silently for vi, sm, set and ns services
2020-04-28Merge pull request #3783 from lioncash/pointerMat M
physical_core: Make use of std::make_unique instead of std::make_shared in ctor
2020-04-29Don't fail silently for vi, sm, set and ns servicesDavid Marcec
2020-04-29kernel: Bad GetInfo ids should not be marked as stubsDavid Marcec
As we currently match hardware and don't return a successful result, these should be marked as errors instead of warnings and as stubs.
2020-04-29Updated comment to reflect ListQualifiedUsers betterDavid Marcec
2020-04-29style: Change AMs & Glues error codes to be dec instead of hexDavid Marcec
Consistency for the rest of the error codes in the codebase
2020-04-29marked stubsDavid Marcec
2020-04-29account: ListQualifiedUsersDavid Marcec
Closes #2844
2020-04-29Audin:u ListAudioIns, OpenAudioIn, ListAudioInsAuto, OpenAudioInAuto, ↵David Marcec
ListAudioInsAutoFiltered, OpenAudioInProtocolSpecified Closes #2874
2020-04-27Merge pull request #3785 from ogniK5377/set-buffer-count-unitbunnei
vi: Don't let uninitialized data pass as a response for SetBufferCount
2020-04-27Merge pull request #3797 from slashiee/hid-stubMat M
services: hid: Stub StopSevenSixAxisSensor.
2020-04-27Merge pull request #3742 from FernandoS27/command-listbunnei
Optimize GPU Command Lists and Introduce Fast GPU Time Option
2020-04-26Merge pull request #3744 from lioncash/table2bunnei
service: Update function tables