- 08 Dec, 2020 9 commits
-
-
Morph authored
- Used by RollerCoaster Tycoon 3: Complete Edition
-
Morph authored
-
Morph authored
controller: Avoid unnecessary copies in ConfigurationComplete()
-
Lioncash authored
Avoids unnecessary copies.
-
Lioncash authored
Avoids unnecessary 1072 byte copies when querying info about controllers.
-
Morph authored
Disable analog joystick from buttons by default
-
german authored
-
Rodrigo Locatti authored
video_core: Make use of ordered container contains() where applicable
-
Rodrigo Locatti authored
ast: Improve string concat readability in operator()
-
- 07 Dec, 2020 19 commits
-
-
bunnei authored
CMakeLists,network: Create YUZU_UNIX macro to replace __unix__
-
Lioncash authored
With C++20, we can use the more concise contains() member function instead of comparing the result of the find() call with the end iterator.
-
Lioncash authored
Provides an in-place format string to make it more pleasant to read.
-
bunnei authored
map_interval: Change field order to address uninitialized field warning
-
Rodrigo Locatti authored
shader_ir: std::move node within DeclareAmend()
-
Rodrigo Locatti authored
buffer_block: Remove unnecessary includes
-
Lioncash authored
Prevents logic errors from occurring from unused values.
-
Lioncash authored
Reduces the amount of dependencies the header pulls in.
-
Rodrigo Locatti authored
video_core: Remove unnecessary enum class casting in logging messages
-
bunnei authored
core: Mark unused fields as [[maybe_unused]]
-
bunnei authored
hle: Type check ResponseBuilder::Push arguments, and fix use in vi.cpp
-
Lioncash authored
Same behavior, but elides an unnecessary atomic reference count increment and decrement.
-
Lioncash authored
fmt now automatically prints the numeric value of an enum class member by default, so we don't need to use casts any more. Reduces the line noise a bit.
-
LC authored
nvdrv: Remove useless re-declaration of pure virtual methods that were already declared in the superclass
-
LC authored
boxcat: Avoid unnecessary object copy
-
LC authored
renderer_vulkan: Add missing `override` specifier
-
LC authored
video_core: Resolve more variable shadowing scenarios pt.3
-
LC authored
Fix "explicitly defaulted but implicitly deleted" warning
-
comex authored
`PhysicalCore`'s move assignment operator was declared as `= default`, but was implicitly deleted because `PhysicalCore` has fields of reference type. Switch to explicitly deleting it to avoid a Clang warning. The move *constructor* is still defaulted, and is required to exist due to the use of `std::vector<PhysicalCore>`.
-
- 06 Dec, 2020 12 commits
-
-
comex authored
- Add a type check so that calling Push with an invalid type produces a compile error rather than a linker error. - vi.cpp was calling Push with a variable of type `std::size_t`. There's no explicit overload for `size_t`, but there is one for `u64`, which on most platforms is the same type as `size_t`. On macOS, however, it isn't: both types are 64 bits, but `size_t` is `unsigned long` and `u64` is `unsigned long long`. Regardless, it makes more sense to explicitly use `u64` here instead of `size_t`.
-
comex authored
__unix__ is not predefined on Apple platforms even though they are Unix.
-
comex authored
-
comex authored
Clang complains about `new_chunk`'s constructor using the then-uninitialized `first_chunk` (even though it's just to get a pointer into it).
-
comex authored
-
comex authored
-
LC authored
video_core: Adjust `NUM` macro to avoid Clang warning
-
comex authored
nvdrv: Remove useless re-declaration of pure virtual methods that were already declared in the superclass
-
comex authored
The previous definition was: #define NUM(field_name) (sizeof(Maxwell3D::Regs::field_name) / sizeof(u32)) In cases where `field_name` happens to refer to an array, Clang thinks `sizeof(an array value) / sizeof(a type)` is an instance of the idiom where `sizeof` is used to compute an array length. So it thinks the type in the denominator ought to be the array element type, and warns if it isn't, assuming this is a mistake. In reality, `NUM` is not used to get array lengths at all, so there is no mistake. Silence the warning by applying Clang's suggested workaround of parenthesizing the denominator.
-
Rodrigo Locatti authored
yuzu_cmd: Remove 'users_size'
-
Rodrigo Locatti authored
maxwell_dma: Rename RenderEnable::Mode::FALSE and TRUE to avoid name conflict
-
bunnei authored
Port citra-emu/citra#5577: "Update cubeb and request a persistent stream session"
-