- 28 Nov, 2020 1 commit
-
-
bunnei authored
core: Reduce string copies in GetGameFileFromPath()
-
- 27 Nov, 2020 8 commits
-
-
LC authored
CMakeLists: disable -Winvalid-offsetof
-
comex authored
This Clang warning complains when offsetof is used on a non-standard-layout type (i.e. any class using various C++ features), even though it works fine (and is not undefined behavior as of C++17).
-
Rodrigo Locatti authored
core: Eliminate remaining usages of the global system instance
-
Lioncash authored
Removes all remaining usages of the global system instance. After this, migration can begin to migrate to being constructed and managed entirely by the various frontends.
-
Chloe authored
savedata_factory: Eliminate usage of the global system instance
-
Lioncash authored
Now there's only two meaningful instances left in core.
-
Rodrigo Locatti authored
service: Eliminate usages of the global system instance
-
Lioncash authored
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
-
- 26 Nov, 2020 6 commits
-
-
LC authored
codec: Fix `pragma GCC diagnostic pop` missing corresponding push
-
comex authored
-
Lioncash authored
Eliminates some minor string churn where applicable. Also eliminates an unnecessary vector copy.
-
bunnei authored
nvdrv, video_core: Don't index out of bounds when given invalid syncpoint ID
-
bunnei authored
nvservices: Reintroducee IoctlCtrl
-
LC authored
input_common: unbreak -Werror with Clang
-
- 25 Nov, 2020 11 commits
-
-
Jan Beich authored
error: unknown warning option '-Werror=unused-but-set-parameter'; did you mean '-Werror=unused-parameter'? [-Werror,-Wunknown-warning-option] error: unknown warning option '-Werror=unused-but-set-variable'; did you mean '-Werror=unused-const-variable'? [-Werror,-Wunknown-warning-option]
-
Rodrigo Locatti authored
Overhaul EmuWindow::PollEvents to fix yuzu-cmd calling SDL_PollEvents off main thread
-
Rodrigo Locatti authored
renderer_vulkan: Implement alpha testing
-
ameerj authored
-
bunnei authored
configure_input_player: Use the NpadStyleSet to limit the available controllers shown
-
bunnei authored
audren: Make use of nodiscard, rework downmixing, release all buffers
-
bunnei authored
core: cpu_manager: Fix shutdown crash when closing before emulation starts.
-
ameerj authored
Co-Authored-By: Rodrigo Locatti <reinuseslisp@airmail.cc>
-
ameerj authored
-
ameerj authored
Used by various textures in many titles, e.g. SSBU menu.
-
bunnei authored
Allow to dial any angle with digital joystick
-
- 24 Nov, 2020 14 commits
-
-
bunnei authored
core: Refactor loader and implement ExecuteProgram
-
bunnei authored
-
bunnei authored
-
bunnei authored
- This is used by Super Mario 3D All-Stars.
-
bunnei authored
-
bunnei authored
* hle: services: Fix a crash with improper NVFlinger lifetime management. - This crash would happen when attempting to shutdown yuzu early on in boot.
-
comex authored
- Use .at() instead of raw indexing when dealing with untrusted indices. - For the special case of WaitFence with syncpoint id UINT32_MAX, instead of crashing, log an error and ignore. This is what I get when running Super Mario Maker 2.
-
Rodrigo Locatti authored
decoder/image: Fix incorrect G24R8 component sizes in GetComponentSize()
-
Rodrigo Locatti authored
core: Make use of [[nodiscard]] with the System class
-
Rodrigo Locatti authored
svc: Remove unnecessary [[maybe_unused]] tag
-
bunnei authored
-
Chloe Marcec authored
Fixes regression caused by #4907 which caused games like Breath of the Wild 1.0.0 not to boot.
-
bunnei authored
input_common: Add more missing [[maybe_unused]] from #4927.
-
bunnei authored
-