- 15 Apr, 2022 2 commits
-
-
Fernando S authored
Fixes for Mario 64
-
Fernando S authored
hle: kernel: Use std::mutex instead of spin locks for most kernel locking.
-
- 14 Apr, 2022 5 commits
-
-
Fernando Sahmkow authored
-
Liam authored
-
Liam authored
-
bunnei authored
ui: Set Link Color when setting theme
-
bunnei authored
emu_window_sdl2: Set window size to display dimensions for exclusive fullscreen
-
- 13 Apr, 2022 4 commits
-
-
Fernando S authored
dynarmic: Fix single core mode
-
Fernando S authored
service: jit: Implement the JIT service
-
Liam authored
-
- 12 Apr, 2022 9 commits
-
-
bunnei authored
Kernel: Track open references to KServerPort and KServerSession.
-
Kyle K authored
-
bunnei authored
hle: kernel: Invalidate entire icache in UnmapProcessMemory and UnmapCodeMemory (fixes #8174)
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
kernel: Fix some data races
-
bunnei authored
service: sfdnsres: unbreak build on FreeBSD
-
- 11 Apr, 2022 3 commits
-
-
Jan Beich authored
src/core/hle/service/sockets/sfdnsres.cpp: In function 'Service::Sockets::NetDbError Service::Sockets::AddrInfoErrorToNetDbError(s32)': src/core/hle/service/sockets/sfdnsres.cpp:66:10: error: 'EAI_NODATA' was not declared in this scope; did you mean 'EAI_NONAME'? 66 | case EAI_NODATA: | ^~~~~~~~~~ | EAI_NONAME src/core/hle/service/sockets/sfdnsres.cpp: In function 'std::vector<unsigned char> Service::Sockets::SerializeAddrInfo(const addrinfo*, s32, std::string_view)': src/core/hle/service/sockets/sfdnsres.cpp:127:53: error: 'sockaddr_in' does not name a type; did you mean 'SockAddrIn'? 127 | const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr); | ^~~~~~~~~~~ | SockAddrIn src/core/hle/service/sockets/sfdnsres.cpp:127:64: error: expected '>' before '*' token 127 | const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr); | ^ src/core/hle/service/sockets/sfdnsres.cpp:127:64: error: expected '(' before '*' token 127 | const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr); | ^ | ( src/core/hle/service/sockets/sfdnsres.cpp:127:65: error: expected primary-expression before '>' token 127 | const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr); | ^ src/core/hle/service/sockets/sfdnsres.cpp:127:84: error: expected ')' before ';' token 127 | const auto addr = *reinterpret_cast<sockaddr_in*>(current->ai_addr); | ^ | ) src/core/hle/service/sockets/sfdnsres.cpp:148:53: error: 'sockaddr_in6' does not name a type; did you mean 'SockAddrIn6'? 148 | const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr); | ^~~~~~~~~~~~ | SockAddrIn6 src/core/hle/service/sockets/sfdnsres.cpp:148:65: error: expected '>' before '*' token 148 | const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr); | ^ src/core/hle/service/sockets/sfdnsres.cpp:148:65: error: expected '(' before '*' token 148 | const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr); | ^ | ( src/core/hle/service/sockets/sfdnsres.cpp:148:66: error: expected primary-expression before '>' token 148 | const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr); | ^ src/core/hle/service/sockets/sfdnsres.cpp:148:85: error: expected ')' before ';' token 148 | const auto addr = *reinterpret_cast<sockaddr_in6*>(current->ai_addr); | ^ | )
-
Fernando S authored
core: extract symbol reading
-
Kyle K authored
Long story short, QT doesn't allow the link colors to be set via their stylesheets. There are two ways to work with this, specify the color manually for every link (See the About dialog) The other way is to change the default palette. IsDarkTheme is copy/pasted from src/yuzu/debugger/wait_tree.cpp
-
- 10 Apr, 2022 1 commit
-
-
Fernando S authored
Improvements for game modding with Skyline, DNS resolution
-
- 09 Apr, 2022 3 commits
-
-
tech-ticks authored
-
bunnei authored
OpenGL: flip front faces if Z scale is inverted
-
Liam authored
-
- 08 Apr, 2022 10 commits
-
-
bunnei authored
core: hid: Reduce the amount of data races
-
bunnei authored
- These are not managed elsewhere, and need to be tracked and closed on emulation shutdown.
-
bunnei authored
-
bunnei authored
- Destructor is no longer invoked, so our object counting was off.
-
bunnei authored
-
bunnei authored
hle: kernel: hle_ipc: HasSessionRequestHandler: Check if domain handler is expired rather than locking.
-
bunnei authored
Replace lock_guard with scoped_lock
-
tech-ticks authored
-
Mai M authored
CMakeLists: Enforce C4505 and C5245
-
Morph authored
These are similar to Wunused-function on gcc/clang
-
- 07 Apr, 2022 3 commits
-
-
Narr the Reg authored
-
merry authored
fix: remove #pragma once in .cpp file
-
tech-ticks authored
-