- 16 Aug, 2020 3 commits
- 15 Aug, 2020 8 commits
-
-
Lioncash authored
Seems like all compilers don't support std::span yet.
-
Lioncash authored
Now that clang-format makes [[nodiscard]] attributes format sensibly, we can apply them to several functions within the common library to allow the compiler to complain about any misuses of the functions.
-
bunnei authored
core: Resolve several -Wextra-semi warnings
-
bunnei authored
software_keyboard: Resolve a pessimizing move warning
-
bunnei authored
system_control: Make functions internally linked where applicable
-
bunnei authored
kernel/scheduler: Mark SchedulerLock constructor as nodiscard
-
bunnei authored
lz4_compression/zstd_compression: Make use of std::span in interfaces
-
bunnei authored
CMakeLists: Update fmt to 7.0.3
-
- 14 Aug, 2020 10 commits
-
-
bunnei authored
textures/decoders: Fix block linear to pitch copies
-
bunnei authored
time_zone_content_manager: Collapse auto and default case
-
Lioncash authored
Prevents a useless self-assignment from occurring.
-
Lioncash authored
Keeps the library up to date and fixes a few bugs
-
Lioncash authored
A std::vector created in place like this is already an rvalue and doesn't need to be moved.
-
Lioncash authored
We can amend one of the cascade macros to require semicolons in order to compile. In other cases, we can just remove the superfluous semicolons.
-
Lioncash authored
Semicolons after a function definition aren't necessary.
-
Lioncash authored
Ensures that callers make use of the constructor, preventing bugs from silently occurring.
-
Lioncash authored
Allows the compiler to warn about cases where the constructor is used but then immediately discarded, which is a potential cause of locking/unlocking bugs.
-
Rodrigo Locatti authored
cheat_engine: Resolve implicit bool->u64 conversion
-
- 13 Aug, 2020 3 commits
- 12 Aug, 2020 2 commits
- 11 Aug, 2020 2 commits
- 10 Aug, 2020 9 commits
-
-
ReinUsesLisp authored
There were two issues with block linear copies. First the swizzling was wrong and this commit reimplements them. The other issue was that these copies are generally used to download render targets from the GPU and yuzu was not downloading them from host GPU memory unless the extreme GPU accuracy setting was selected. This commit enables cached memory reads for all accuracy levels. - Fixes level thumbnails in Super Mario Maker 2.
-
bunnei authored
cheat_engine: Make use of designated initializers
-
bunnei authored
input_configuration: Add range logic for analog sticks
-
ameerj authored
This PR is now only the Analog devices handling the range value defaulting at 100%
-
ameerj authored
-
Ameer authored
-
Ameer authored
-
Ameer authored
-
bunnei authored
kernel: Remove unused variables
-
- 09 Aug, 2020 2 commits
- 07 Aug, 2020 1 commit
-
-
bunnei authored
game_list_worker: Do not clear entries when > 1 gamedir is present
-