- 12 Dec, 2020 8 commits
- 10 Dec, 2020 7 commits
-
-
bunnei authored
common/file_util: Address review comments of #5174
-
LC authored
travis/linux: Use correct ccache directory
-
bunnei authored
nim: Stub IsLargeResourceAvailable
-
lat9nq authored
Changes the bound ccache directory to `/home/yuzu/.ccache` instead of `/root/.ccache`, since the `/root` directory is not accessible by the `yuzu` user in the guest container.
-
bunnei authored
gl_shader_decompiler: Elide unnecessary copies within DeclareConstantBuffers()
-
Lioncash authored
Makes use of the VirtualDir and VirtualFile aliases across the board instead of having a few isolated places that don't use it.
-
Morph authored
-
- 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 13 commits
-
-
Lioncash authored
Greatly simplifies our file-handling code for these functions.
-
Lioncash authored
Simplifies and removes some casts. In all cases, these were generally widening from a 32-bit unsigned type to a 64-bit unsigned type, so no information would be lost from the conversion.
-
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
-