- 29 Oct, 2022 1 commit
-
-
bunnei authored
video_core: Fix drawing trigger mechanism regression
-
- 28 Oct, 2022 2 commits
- 27 Oct, 2022 5 commits
-
-
Liam authored
-
bunnei authored
file_sys: Priority display of game titles in the current language
-
bunnei authored
Revert "shader_recompiler/dead_code_elimination: Add DeadBranchElimination pass"
-
liamwhite authored
audio_in/out_system: Pass Initialize members by value where applicable
-
FengChen authored
-
- 26 Oct, 2022 4 commits
-
-
bunnei authored
kernel: refactor dummy thread wakeups
-
Lioncash authored
applet_resource_user_id isn't actually modified and is just assigned to a member variable, so this doesn't need to be a mutable reference. Similarly, the device name itself isn't modified and is only moved. We pass by value here, since we can still perform the move, but eliminate a sneaky set of calls that can unintentionally destroy the original string. Given how nested the calls are, it's good to get rid of this potential vector for a use-after-move bug.
-
Mai authored
concepts: Use the std::contiguous_iterator concept
-
Morph authored
This also covers std::span, which does not have a const iterator. Also renames IsSTLContainer to IsContiguousContainer to explicitly convey its semantics.
-
- 25 Oct, 2022 8 commits
-
-
liamwhite authored
tests: fix for -Wall
-
liamwhite authored
service: nfp: Allow amiibos without keys
-
liamwhite authored
input_common: cache vibration tests
-
Alexandre Bouvier authored
Fix #9123
-
FengChen authored
-
liamwhite authored
video_core: Reimplementing the maxwell drawing trigger mechanism
-
liamwhite authored
core: barrier service thread shutdown
-
Feng Chen authored
-
- 24 Oct, 2022 5 commits
-
-
Liam authored
-
bunnei authored
video_core: Fix legacy to generic location unpaired
-
FengChen authored
-
Fernando S authored
nvdrv: fix container destruction order
-
bunnei authored
general: Treat more warnings as errors
-
- 23 Oct, 2022 2 commits
- 22 Oct, 2022 13 commits
-
-
german77 authored
-
Morph authored
Clang erroneously emits this warning when using designated initializers.
-
Morph authored
-
Morph authored
Copies up to sizeof(p_name) - 1 in strncpy and null terminates it at p_name[254]
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
Clang and ICC for whatever reason also defines __GNUC__. Exclude them from this check.
-
Morph authored
This is similar to Clang's -Wunused-lambda-capture
-
Morph authored
Disabling C4100 is similar to -Wno-unused-parameter
-
Morph authored
These warnings are already included in /W3.
-
Morph authored
Resolves C4146 on MSVC
-