| Age | Commit message (Collapse) | Author |
|
Previously the name of the define was missing the BOOST_ prefix.
|
|
CMakeLists: Disable concepts in boost asio
|
|
|
|
C++20 deprecates using the = lambda capture to implicitly capture the
this pointer. Instead, we must specify it explicitly.
|
|
This doesn't modify class instance state.
|
|
Ensures that the function always has returns in all control paths.
|
|
|
|
It's deprecated in C++20 to use = to capture the this pointer.
Instead, we can simply pass this as an argument to the thread
constructor.
|
|
|
|
|
|
vfs_real: Fix MoveFile
|
|
CMakeLists: Make use of /std:c++latest on MSVC
|
|
frontend: Add support to batch install files to NAND
|
|
|
|
Fix Discord invite link
|
|
|
|
When zero byte files are present, the key (offset) for that file is identical to the file right after. A std::map isn't able to fit key-value pairs with identical keys (offsets), therefore, the solution is to use std::multimap which permits multiple entries with the same key.
This most prominently fixes Pokemon Sword and Shield weather with any RomFS mod applied.
|
|
AM: fix GetDesiredLanguage:
|
|
vk_rasterizer: Pass <pSizes> to CmdBindVertexBuffers2EXT
|
|
CMakeLists: Do not search for system libusb on macOS
|
|
and default miis.
|
|
Revert "Port citra-emu/citra#5441: "Common: remove a mod from AlignUp""
|
|
|
|
Port citra-emu/citra#5441: "Common: remove a mod from AlignUp"
|
|
In cases where the size is not a known constant when inlining, AlignUp<std::size_t> currently generates two 64-bit div instructions.
This generates one div and a cmov which is significantly cheaper.
|
|
|
|
|
|
available
|
|
|
|
|
|
Provides the buildbot with one builder that is always tracking the
latest version of the C++ standard, allowing us to progressively rectify
our code and amend any differences between standards over time instead
of waiting for a complete standard change, potentially breaking a lot of
code all at once.
|
|
service: Update function tables
|
|
KeyManager: Prevent writing of invalid keys
|
|
This has been fixed in Nvidia's public beta driver 451.74. The previous
beta driver will be broken, people using these will have to update.
|
|
cmake: drop dependency on QtOpenGL
|
|
CMakeLists: Update fmt to 7.0.1
|
|
|
|
Keeps the package up to date with the latest major release of fmt.
This version brings in quite a bit of improvements, such as code size
reduction, etc.
|
|
Change GOB sizes from free-functions to constexpr constants.
Add SwizzleSliceToVoxel, a function that swizzles a 2D array of pixels
into a 3D texture and use it for 3D copies.
|
|
CMakeLists: Use lower-case command names
|
|
Our convention uses lower-case command names, so this is just a
consistency change.
|
|
The file wasn't closed prior to being renamed / moved, throwing an error that states "The process cannot access the file because it is being used by another process." Fix this by closing the file prior to a rename / move operation.
Fixes saving in Luigi's Mansion 3 and KATANA KAMI: A Way of the Samurai Story.
|
|
If the keys are zero, don't write them to the autogenerated file.
|
|
|
|
- Remove the overwrite files checkbox, it will always overwrite
- The progressbar now reflects the progress in terms of data transferred.
|
|
Key issues fixed:
- Progress dialog showing up as white/hanging/getting stuck/unresponsive.
Key changes:
- Progress dialog now shows progress as a function of all files instead of per nca within a file.
- Overwrite existing files will overwrite all files in the selection.
|
|
This adds support to batch install files to NAND
|
|
|
|
We should not be limited by the SDMC's partition size, set this to 1 TiB. Hardware is limited to the max allowed by the MBR partition table which is 2 TiB.
|
|
Sets the total space of user and system partitions to their hardware defaults.
Furthermore, return the total space as free space for the user partition to prevent it from reaching zero.
Some games like Bioshock 2 check for the available free space prior to save creation, and we should not be limited by arbitrary limits.
|