- 10 Dec, 2020 1 commit
-
-
bunnei authored
gl_shader_decompiler: Elide unnecessary copies within DeclareConstantBuffers()
-
- 09 Dec, 2020 12 commits
-
-
LC authored
common/file_util: Let std::filesystem cast from UTF16 to std::string
-
ReinUsesLisp authored
Fix invalid encoding paths when iterating over a directory on Windows.
-
Chloe authored
vfs_real: Fix CreateFile for files without a file extension
-
Morph authored
-
Morph authored
common/file_util: Fix and deprecate CreateFullPath, add CreateDirs
-
ReinUsesLisp authored
Fix CreateFullPath to have its intended previous behavior (whatever that was), and deprecate it in favor of the new CreateDirs function. Unlike CreateDir, CreateDirs is marked as [[nodiscard]] to avoid new code ignoring its result value.
-
ReinUsesLisp authored
-
Rodrigo Locatti authored
network, sockets: Replace `POLL_IN`, `POLL_OUT`, etc. constants with an `enum class PollEvents`
-
Rodrigo Locatti authored
common/file_util: Make use of std::filesystem
-
Lioncash authored
Converts creation and deletion functions over to std::filesystem, simplifying our file-handling code. Notably with this, CopyDir will now function on Windows.
-
bunnei authored
core: Remove unnecessary enum casts in log calls
-
bunnei authored
applets: Resolve variable shadowing
-
- 08 Dec, 2020 14 commits
-
-
Lioncash authored
Greatly simplifies our file-handling code for these functions.
-
LC authored
ci: Remove `-DYUZU_USE_BUNDLED_UNICORN=ON`
-
lat9nq authored
Unicorn has been removed, yet CI still enables building with Unicorn. This just cleans up a few leftovers by removing the variable from the CMake parameters in CI.
-
bunnei authored
memory: Resolve -Wdocumentation warning for Write()
-
Lioncash authored
Write() doesn't return anything, so the @returns tag shouldn't be present.
-
bunnei authored
configure_motion_touch: Fix unescaped backslash in regex
-
Morph authored
controller: Avoid unnecessary copies in ConfigurationComplete()
-
Lioncash authored
Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts.
-
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 13 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.
-
Lioncash authored
Resolves a -Wrange-loop-analysis warning.
-
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.
-