| Age | Commit message (Collapse) | Author |
|
Resolves the clang build issue in a more unintrusive way.
|
|
|
|
This slipped through the cracks due to another change being merged
before the compiler flag changes.
|
|
core: Fix clang build
|
|
nifm: GetAppletInfo stub
|
|
|
|
Fixes crash for Catherine Full Body
|
|
kernel: Implement host thread register methods without locking
|
|
filesystem: Fix CreateDirectory and DeleteFile
|
|
core: Add boxcat sources with target_sources
|
|
hle: service: nvdrv: Implement nvhost_as_gpu::FreeSpace.
|
|
Same behavior, minus a script variable.
|
|
mii/manager: Make use of unused lower bound in GetRandomValue()
|
|
Recent changes to the build system that made more warnings be flagged as
errors caused building via clang to break.
Fixes #4795
|
|
Previously, the lower bound wasn't being used and zero was being used as
the lower bound every time this function was called.
This affects the outcome of some of the randomized entries a little bit,
for example, the lower-bound for beard and mustache flags was supposed
to be 1, not 0.
Aside from these cases, the bug didn't affect anything else.
|
|
- Fixes a crash when BCAT service is offline.
|
|
hle: service: vi: Implement BufferQueue::CancelBuffer.
|
|
- Used by Super Mario 3D All-Stars.
|
|
- This is used by Super Mario 3D All-Stars.
|
|
Locks on GetCurrentHostThreadID were causing performance issues
according to Visual Studio's profiler. It was consuming twice the time
as arm_interface.Run(). The cost was not in the function itself but in
the lockinig it required.
Reimplement these functions using atomics and static storage instead of
an unordered_map. This is a side effect to avoid locking and using linked
lists for reads.
Replace unordered_map with a linear search.
|
|
Makes our error coverage a little more consistent across the board by
applying it to Linux side of things as well. This also makes it more
consistent with the warning settings in other libraries in the project.
This also updates httplib to 0.7.9, as there are several warning
cleanups made that allow us to enable several warnings as errors.
|
|
Add a check if dir is nullptr (does not exist)
Fixes save game creation in Hades
|
|
file_sys/nsp: Make SetTicketKeys actually do something
|
|
- This is used by Super Mario 3D All-Stars.
|
|
hid: Stub HomeButtonInputProtection service commands
|
|
submission_package: Fix updates integrated into cartridge images.
|
|
capsrv: Stub 3 variants of SetShimLibraryVersion
|
|
HID: Only use inputs corresponding to controller type
|
|
HID: Add Stub for EnableSixAxisSensorFusion
|
|
|
|
|
|
input_common: First implementation of controller rumble
|
|
frontend/controller: Eliminate dependency on the global system instance
|
|
- Used by caps_su SetShimLibraryVersion
|
|
- Used in Super Smash Bros. Ultimate
|
|
|
|
- Used in 1-2 Switch. Given that we do not emulate the functionality of the home button yet, we can stub this for now.
|
|
HID: Use different timing for motion
|
|
nvdrv: Stub nvdec/vic ioctls to bypass nvdec movies
|
|
|
|
This way it's obvious that this function shouldn't be used in any future
code.
|
|
|
|
service: Restore "unused" function
|
|
Turns out this function is actually used, but within a trace log.
|
|
|
|
acc: Partially implement LoadOpenContext
|
|
|
|
memory doesn't exist as a parameter any more.
|
|
Allows some implementations to avoid completely zeroing out the internal
buffer of the optional, and instead only set the validity byte within
the structure.
This also makes it consistent how we return empty optionals.
|
|
Prevents unnecessary copying of the line being parsed.
|