- 19 Aug, 2021 5 commits
-
-
Morph authored
-
Mai M authored
Fix crash in logging in CreateStrayLayer
-
Valeri authored
It was trying to log value of layer_id which is specifically known not to exist, potentially leading to segfault. Log display_id instead.
-
Morph authored
Fix check is thread current in GetThreadContext
-
Valeri authored
Misplaced break made it only check for the first core.
-
- 18 Aug, 2021 1 commit
-
-
bunnei authored
kernel: Various improvements to scheduler
-
- 16 Aug, 2021 4 commits
-
-
Fernando S authored
Fix LAN Play
-
Sönke Holz authored
-
spholz authored
-
Sönke Holz authored
-
- 15 Aug, 2021 1 commit
-
-
bunnei authored
decoders: Optimize memcpy for the other functions
-
- 14 Aug, 2021 2 commits
- 13 Aug, 2021 7 commits
-
-
yzct12345 authored
This fixes a lost wakeup in SPSCQueue. If the reader is in just the right position, the writer's notification will be lost and this will be a problem if the writer then does something to wait on the reader. This was discovered to affect my upcoming stacktrace PR. I don't think any performance decrease will be noticeable because an uncontended mutex is smart enough to skip the syscall. This PR might also resolve some rare deadlocks but I don't know of any examples.
-
Sönke Holz authored
-
spholz authored
-
Sönke Holz authored
The header "combaseapi.h" of mingw-w64 defines "interface" as "struct".
-
Sönke Holz authored
-
bunnei authored
input_common: Disable sdl raw input mode
-
Sönke Holz authored
-
- 12 Aug, 2021 14 commits
-
-
Sönke Holz authored
-
Sönke Holz authored
GetAvailableNetworkInterfaces
-
Sönke Holz authored
network interface combobox
-
Sönke Holz authored
-
Sönke Holz authored
-
Sönke Holz authored
-
Sönke Holz authored
-
spholz authored
-
Sönke Holz authored
-
spholz authored
This commit renames the "Services" tab to "Network" and adds a combobox that allows the user to select the network interface that yuzu should use. This new setting is now used to get the local IP address in Network::GetHostIPv4Address. This prevents yuzu from selecting the wrong network interface and thus using the wrong IP address. The return type of Network::GetHostIPv4Adress has also been changed.
-
bunnei authored
vic: Specify sws_scale height stride.
-
german77 authored
-
yzct12345 authored
-
Mai M authored
externals: Update sdl2 to 2.0.16
-
- 11 Aug, 2021 4 commits
-
-
Mai M authored
settings: Fix MSVC issues
-
lat9nq authored
According to https://stackoverflow.com/questions/469508, we run into a MSVC bug (since VS 2005) when using diamond inheritance for RangedSetting. This explicitly implements those functions in RangedSetting. GetValue is implemented as just calling the inherited version. The explicit converson operator is reimplemented. I opted for this over ignoring the warning with a pragma since this specifies the inherited behavior, and I have now less faith in MSVC to pick the right one. In addition, we mark destructors as virtual to silence what I believe is a fair MSVC compilation error.
-
bunnei authored
settings: Implement settings ranges
-
german77 authored
-
- 10 Aug, 2021 2 commits
-
-
Fernando S authored
texture_cache: Split out template definitions
-
Ameer J authored
main: Avoid stopping emulation when taking a screenshot
-