summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-04-24Merge pull request #8261 from liamwhite/jit-cleanupMai M
service: jit: document and clean up
2022-04-24service: jit: document and clean upLiam
2022-04-24Merge pull request #8260 from Morph1984/c4146Mai M
kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFF
2022-04-24kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFFMorph
Resolves the C4146 compiler warning on MSVC.
2022-04-24Remove unused PrepareReschedule functionMerry
2022-04-23Merge pull request #8249 from german77/queuedMorph
hotkeys: Trigger actions on a separate thread
2022-04-23hotkeys: Trigger actions on a separate threadNarr the Reg
2022-04-23general: Convert source file copyright comments over to SPDXMorph
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2022-04-22Merge pull request #7976 from BytesGalore/masterbunnei
loader: log the type of mismatching file-extension
2022-04-21Merge pull request #7978 from german77/sidewaybunnei
input_common: Map sticks correctly when mapped sideways
2022-04-21Merge pull request #8222 from german77/sixaxis_testbunnei
service: hid: Improve accuracy of sixaxis functions
2022-04-21Merge pull request #8192 from german77/screenshotMai M
bootmanager: Don't create another screenshot request if previous one is not done yet
2022-04-21Merge pull request #8232 from liamwhite/backtraceMai M
core/arm: separate backtrace collection
2022-04-20core/arm: separate backtrace collectionLiam
2022-04-20Merge pull request #8231 from german77/warningMai M
input_common: Ignore boost uninitialized local variable
2022-04-20input_common: Ignore boost uninitialized local variableNarr the Reg
2022-04-20Merge pull request #8224 from Docteh/hihi1bunnei
ui: translate hat directions
2022-04-19Prevent the mouse cursor from leaving the window when mouse panning is enabledPurple
2022-04-19ui: translate hat directionsKyle K
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.
2022-04-18service: hid: Improve accuracy of sixaxis functionsNarr the Reg
2022-04-18yuzu: mention GPLv3.0+ in about dialogAndrea Pappacoda
Follow-up to 284934ebfdf5e530c960cf69969172ff76f40bea Fixes #8218
2022-04-18bootmanager: Don't create another screenshot request if previous one is not ↵german77
done yet
2022-04-17Merge pull request #8204 from Docteh/translate_gameslistMai M
ui: Fix Game Compatibility list translations
2022-04-16ui: Fix Game Compatibility list translationsKyle K
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
2022-04-16Merge pull request #6558 from german77/ringcon2Fernando S
hidbus: Implement hidbus and ringcon
2022-04-16Merge pull request #8188 from merryhime/jit-race-page-table-changedbunnei
dynarmic: Fix race when switching page tables
2022-04-16yuzu: Call ignore event after ensuring it's initializedNarr the Reg
2022-04-16yuzu: Add custom ringcon configurationgerman77
2022-04-16hidbus: Implement hidbus and ringcongerman77
2022-04-16Merge pull request #8205 from liamwhite/n64-miscFernando S
Fixes for Mario 64
2022-04-16Merge pull request #8172 from bunnei/kernel-mutexFernando S
hle: kernel: Use std::mutex instead of spin locks for most kernel locking.
2022-04-14video_core: implement formats for N64 emulationFernando Sahmkow
2022-04-14buffer_cache: cap vertex buffer sizesLiam
2022-04-14maxwell3d: add small_index_2 registerLiam
2022-04-13Merge pull request #8190 from Docteh/palswapbunnei
ui: Set Link Color when setting theme
2022-04-13Merge pull request #8027 from lat9nq/cmd-fullscreen-sizebunnei
emu_window_sdl2: Set window size to display dimensions for exclusive fullscreen
2022-04-13Merge pull request #8202 from merryhime/fix-single-coreFernando S
dynarmic: Fix single core mode
2022-04-13dynarmic: Fix single core modemerry
Regression introduced in a5d040df3d. Closes #8201.
2022-04-13service: jit: Implement the JIT serviceLiam
2022-04-12Merge pull request #8165 from bunnei/ensure-session-port-cleanupbunnei
Kernel: Track open references to KServerPort and KServerSession.
2022-04-12ui: Touching QPalette::Text broke dark -> light UI. don't doKyle K
2022-04-12Merge pull request #8178 from tech-ticks/skyline-icache-fixbunnei
hle: kernel: Invalidate entire icache in UnmapProcessMemory and UnmapCodeMemory (fixes #8174)
2022-04-11core: hle: kernel: k_thread: Rework dummy thread waiting.bunnei
2022-04-11core: hle: service: Allocate a service thread.bunnei
2022-04-11hle: kernel: k_spin_lock: Remove unused ThreadPause.bunnei
2022-04-11hle: kernel: Use std::mutex instead of spin locks for most kernel locking.bunnei
2022-04-11Merge pull request #8157 from lat9nq/kernel-racesbunnei
kernel: Fix some data races
2022-04-11service: sfdnsres: add missing includes for some BSDs after 82d46a974ad4Jan Beich
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); | ^ | )
2022-04-11Merge pull request #8180 from liamwhite/symbolsFernando S
core: extract symbol reading
2022-04-11ui: Set Link Color when setting themeKyle K
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