- 21 Apr, 2022 1 commit
-
-
Mai M authored
input_common: Ignore boost uninitialized local variable
-
- 20 Apr, 2022 2 commits
-
-
Narr the Reg authored
-
bunnei authored
ui: translate hat directions
-
- 19 Apr, 2022 4 commits
-
-
Mai M authored
dynarmic: Always use mmap for allocation on Linux
-
Purple authored
-
Liam authored
-
Kyle K authored
QObject ends up being its own translation context. But this works in our favor. GetButtonName and GetDirectionName will share one translation the directions such as "Left" "Right" and the ConfigureInputPlayer context will contain translations that show up in the form, in places that aren't those buttons.
-
- 18 Apr, 2022 4 commits
-
-
Fernando S authored
yuzu: mention GPLv3.0 in about dialog
-
Andrea Pappacoda authored
Follow-up to 284934eb Fixes #8218
-
Mai M authored
Clarify the Skyline Emulator license exception
-
Andrea Pappacoda authored
`GPL-3.0-or-later OR MPL-2.0` is an SPDX expression: https://spdx.github.io/spdx-spec/SPDX-license-expressions/ Fixes #8219
-
- 17 Apr, 2022 1 commit
-
-
Mai M authored
ui: Fix Game Compatibility list translations
-
- 16 Apr, 2022 6 commits
-
-
Kyle K authored
Reported by GillianMC on Discord. Looks to be a small quirk in the QT API. setText(QObject::tr(status.text)); bringing up QObject breaks the link with the GameListItemCompat
-
Fernando S authored
hidbus: Implement hidbus and ringcon
-
bunnei authored
dynarmic: Fix race when switching page tables
-
Narr the Reg authored
-
german77 authored
-
german77 authored
-
- 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 2 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
-