| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-11 | Revert "Merge pull request #5173 from lioncash/common-fs" | Morph | |
| This reverts commit ce5fcb6bb2c358b0251a2ce87945bda52789a76d, reversing changes made to 6f41763061082d5fa2ab039c554427152243cb46. | |||
| 2020-12-11 | Revert "Merge pull request #5174 from ReinUsesLisp/fs-fix" | Morph | |
| This reverts commit 5fe55b16a11d9ec607fb8a3fdddc77a4393cd96a, reversing changes made to e94dd7e2c4fc3f7ca2c15c01bdc301be2b8a4c1b. | |||
| 2020-12-11 | Revert "Merge pull request #5176 from Morph1984/fix-createfile" | Morph | |
| This reverts commit 6d6115475b4edccdf1bb4e96ecc3d3b1be319e76, reversing changes made to 5fe55b16a11d9ec607fb8a3fdddc77a4393cd96a. | |||
| 2020-12-11 | Revert "Merge pull request #5179 from ReinUsesLisp/fs-path" | Morph | |
| This reverts commit 4e94d0d53af2cdb7b03ef9de23cc29f3565df97a, reversing changes made to 6d6115475b4edccdf1bb4e96ecc3d3b1be319e76. | |||
| 2020-12-11 | Revert "Merge pull request #5181 from Morph1984/5174-review" | Morph | |
| This reverts commit cdb36aef9ec9d30bdef1953f9ed46776ae2f12af, reversing changes made to 5e9b77129f2cf8c039a8d98033cae4ac0f93f515. | |||
| 2020-12-10 | Merge pull request #5181 from Morph1984/5174-review | bunnei | |
| common/file_util: Address review comments of #5174 | |||
| 2020-12-10 | Merge pull request #5184 from lat9nq/travis-linux-ccache-fix | LC | |
| travis/linux: Use correct ccache directory | |||
| 2020-12-10 | Merge pull request #5123 from Morph1984/nim-IsLargeResourceAvailable | bunnei | |
| nim: Stub IsLargeResourceAvailable | |||
| 2020-12-10 | travis/linux: Use correct ccache directory | lat9nq | |
| 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. | |||
| 2020-12-10 | Merge pull request #5162 from lioncash/copy-shader | bunnei | |
| gl_shader_decompiler: Elide unnecessary copies within DeclareConstantBuffers() | |||
| 2020-12-09 | common/file_util: Simplify the behavior of CreateFullPath | Morph | |
| 2020-12-09 | Merge pull request #5179 from ReinUsesLisp/fs-path | LC | |
| common/file_util: Let std::filesystem cast from UTF16 to std::string | |||
| 2020-12-09 | common/file_util: Let std::filesystem cast from UTF16 to std::string | ReinUsesLisp | |
| Fix invalid encoding paths when iterating over a directory on Windows. | |||
| 2020-12-09 | Merge pull request #5176 from Morph1984/fix-createfile | Chloe | |
| vfs_real: Fix CreateFile for files without a file extension | |||
| 2020-12-09 | vfs_real: Fix CreateFile for files without a file extension | Morph | |
| 2020-12-09 | Merge pull request #5174 from ReinUsesLisp/fs-fix | Morph | |
| common/file_util: Fix and deprecate CreateFullPath, add CreateDirs | |||
| 2020-12-09 | common/file_util: Fix and deprecate CreateFullPath, add CreateDirs | ReinUsesLisp | |
| 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. | |||
| 2020-12-09 | common/file_util: Succeed on CreateDir when the directory exists | ReinUsesLisp | |
| 2020-12-09 | Merge pull request #5142 from comex/xx-poll-events | Rodrigo Locatti | |
| network, sockets: Replace `POLL_IN`, `POLL_OUT`, etc. constants with an `enum class PollEvents` | |||
| 2020-12-09 | Merge pull request #5173 from lioncash/common-fs | Rodrigo Locatti | |
| common/file_util: Make use of std::filesystem | |||
| 2020-12-09 | file_util: Migrate remaining file handling functions over to std::filesystem | Lioncash | |
| Converts creation and deletion functions over to std::filesystem, simplifying our file-handling code. Notably with this, CopyDir will now function on Windows. | |||
| 2020-12-08 | Merge pull request #5166 from lioncash/log-cast | bunnei | |
| core: Remove unnecessary enum casts in log calls | |||
| 2020-12-08 | Merge pull request #5135 from Morph1984/applets-shadow | bunnei | |
| applets: Resolve variable shadowing | |||
| 2020-12-08 | file_util: Migrate Exists() and IsDirectory() over to std::filesystem | Lioncash | |
| Greatly simplifies our file-handling code for these functions. | |||
| 2020-12-08 | Merge pull request #5171 from lat9nq/ci-unicorn-cleanup | LC | |
| ci: Remove `-DYUZU_USE_BUNDLED_UNICORN=ON` | |||
| 2020-12-08 | ci: Remove `-DYUZU_USE_BUNDLED_UNICORN=ON` | lat9nq | |
| 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. | |||
| 2020-12-08 | Merge pull request #5167 from lioncash/doc-memory | bunnei | |
| memory: Resolve -Wdocumentation warning for Write() | |||
| 2020-12-08 | memory: Resolve -Wdocumentation warning for Write() | Lioncash | |
| Write() doesn't return anything, so the @returns tag shouldn't be present. | |||
| 2020-12-08 | Merge pull request #5156 from comex/xx-raws | bunnei | |
| configure_motion_touch: Fix unescaped backslash in regex | |||
| 2020-12-08 | Merge pull request #5165 from lioncash/copy-controller | Morph | |
| controller: Avoid unnecessary copies in ConfigurationComplete() | |||
| 2020-12-07 | core: Remove unnecessary enum casts in log calls | Lioncash | |
| Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts. | |||
| 2020-12-07 | controller: Use std::move within ConvertToFrontendParameters() | Lioncash | |
| Avoids unnecessary copies. | |||
| 2020-12-07 | controller: Avoid unnecessary copies in ConfigurationComplete() | Lioncash | |
| Avoids unnecessary 1072 byte copies when querying info about controllers. | |||
| 2020-12-08 | Merge pull request #5020 from german77/AnalogfromButtonFix | Morph | |
| Disable analog joystick from buttons by default | |||
| 2020-12-07 | Disable analog joystick from buttons by default | german | |
| 2020-12-07 | Merge pull request #5164 from lioncash/contains | Rodrigo Locatti | |
| video_core: Make use of ordered container contains() where applicable | |||
| 2020-12-07 | Merge pull request #5163 from lioncash/concat | Rodrigo Locatti | |
| ast: Improve string concat readability in operator() | |||
| 2020-12-07 | Merge pull request #5153 from comex/xx-unix | bunnei | |
| CMakeLists,network: Create YUZU_UNIX macro to replace __unix__ | |||
| 2020-12-07 | video_core: Make use of ordered container contains() where applicable | Lioncash | |
| 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. | |||
| 2020-12-07 | ast: Improve string concat readability in operator() | Lioncash | |
| Provides an in-place format string to make it more pleasant to read. | |||
| 2020-12-07 | gl_shader_decompiler: Elide unnecessary copies within DeclareConstantBuffers() | Lioncash | |
| Resolves a -Wrange-loop-analysis warning. | |||
| 2020-12-07 | Merge pull request #5149 from comex/xx-map-interval | bunnei | |
| map_interval: Change field order to address uninitialized field warning | |||
| 2020-12-07 | Merge pull request #5159 from lioncash/move-amend | Rodrigo Locatti | |
| shader_ir: std::move node within DeclareAmend() | |||
| 2020-12-07 | Merge pull request #5160 from lioncash/buffer-header | Rodrigo Locatti | |
| buffer_block: Remove unnecessary includes | |||
| 2020-12-07 | buffer_block: Mark interface as nodiscard where applicable | Lioncash | |
| Prevents logic errors from occurring from unused values. | |||
| 2020-12-07 | buffer_block: Remove unnecessary includes | Lioncash | |
| Reduces the amount of dependencies the header pulls in. | |||
| 2020-12-07 | Merge pull request #5158 from lioncash/video-fmt | Rodrigo Locatti | |
| video_core: Remove unnecessary enum class casting in logging messages | |||
| 2020-12-06 | Merge pull request #5148 from comex/xx-unused-fields | bunnei | |
| core: Mark unused fields as [[maybe_unused]] | |||
| 2020-12-06 | Merge pull request #5154 from comex/xx-ipc | bunnei | |
| hle: Type check ResponseBuilder::Push arguments, and fix use in vi.cpp | |||
| 2020-12-07 | shader_ir: std::move node within DeclareAmend() | Lioncash | |
| Same behavior, but elides an unnecessary atomic reference count increment and decrement. | |||
