- 20 Oct, 2020 2 commits
- 19 Oct, 2020 3 commits
- 18 Oct, 2020 4 commits
- 17 Oct, 2020 4 commits
-
-
Lioncash authored
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.
-
bunnei authored
service: bcat: Check client connection before interacting with socket.
-
bunnei authored
udp/client: Take std::function by const reference with TestCommunication()
-
bunnei authored
- Fixes a crash when BCAT service is offline.
-
- 16 Oct, 2020 5 commits
-
-
Lioncash authored
Same behavior, but makes the callback list nicer to look at.
-
Lioncash authored
Avoids redundant copies.
-
Morph authored
Previously, disconnecting a controller still leaves a null SDLJoystick entry within the vector of SDLJoysticks mapped by GUID. When a DirectInput device of the same GUID is reconnected, it adds that device to a new port causing non-detectable input. Furthermore, opening the "Configure" menu would cause yuzu to crash since it first tries to resolve the name of a null SDLJoystick entry that was not removed. Resolve this by properly erasing the SDLJoystick entry from the vector.
-
bunnei authored
input_common/CMakeLists: Make some warnings errors
-
bunnei authored
hle: service: vi: Implement BufferQueue::CancelBuffer.
-
- 15 Oct, 2020 4 commits
-
-
Lioncash authored
Makes the input_common code warnings consistent with the rest of the codebase.
-
bunnei authored
service: acc: Stub IManagerForApplication::StoreOpenContext.
-
bunnei authored
- Used by Super Mario 3D All-Stars.
-
bunnei authored
vk_device: Block VK_EXT_extended_dynamic_state for RDNA devices
-
- 14 Oct, 2020 1 commit
-
-
bunnei authored
- This is used by Super Mario 3D All-Stars.
-
- 13 Oct, 2020 9 commits
-
-
bunnei authored
audio_core/CMakeLists: Make warnings consistent with core
-
ReinUsesLisp authored
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.
-
Lioncash authored
Normalizes the warnings shared between audio_core and core.
-
Rodrigo Locatti authored
core/CMakeLists: Make some warnings errors
-
Lioncash authored
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.
-
ReinUsesLisp authored
Vulkan has requirements for primitive topologies that don't play nicely with yuzu's. Since it's only 4 bits, we can move it to fixed state without changing the size of the pipeline key. - Fixes a regression on recent Nvidia drivers on Fire Emblem: Three Houses.
-
Morph authored
Add a check if dir is nullptr (does not exist) Fixes save game creation in Hades
-
bunnei authored
file_sys/nsp: Make SetTicketKeys actually do something
-
bunnei authored
- This is used by Super Mario 3D All-Stars.
-
- 12 Oct, 2020 1 commit
-
-
bunnei authored
shader/texture: Implement CUBE texture type for TMML and fix arrays
-
- 10 Oct, 2020 2 commits
- 09 Oct, 2020 3 commits
-
-
ReinUsesLisp authored
-
LC authored
video_core: Enforce -Wunused-variable and -Wunused-but-set-variable
-
goldenx86 authored
RDNA devices seem to crash when using VK_EXT_extended_dynamic_state in the latest 20.9.2 proprietary Windows drivers. As a workaround, for now we block device names corresponding to current RDNA released products.
-
- 08 Oct, 2020 2 commits
-
-
bunnei authored
InputCommon: Add random motion input for buttons
-
Rodrigo Locatti authored
renderer_vulkan/wrapper: Fix physical device sorting
-