- 15 Jun, 2021 2 commits
- 14 Jun, 2021 2 commits
-
-
bunnei authored
configure_cpu_debug: Clarify settings behavior
-
Fernando Sahmkow authored
common: fs: Use the normal directory iterator in *Recursively functions
-
- 13 Jun, 2021 6 commits
-
-
Mai M authored
common: logging: Restructure logging backend
-
Morph authored
-
Morph authored
-
Morph authored
Allows us to forward declare Common::FS::IOFile.
-
Morph authored
hid: Stub IsFirmwareUpdateAvailableForSixAxisSensor
-
Morph authored
This makes it clear that the disabled settings only take effect when CPU Accuracy is set to Debug Mode.
-
- 12 Jun, 2021 1 commit
-
-
Morph authored
MSVC's implementation of recursive_directory_iterator throws an exception on an error despite a std::error_code being passed into its constructor. This is most likely a bug in MSVC's implementation since directory_iterator does not throw an exception on an error. We can replace the usage of recursive_directory_iterator for now until MSVC fixes their implementation of it.
-
- 11 Jun, 2021 24 commits
-
-
bunnei authored
externals: Don't set FOUND or VERSION on LIBUSB
-
lat9nq authored
Fixes an issue where libusb.h wouldn't be found when building yuzu on MSVC. This only affects the "traditional" CMake pathway for linking libusb to yuzu AKA MSVC. For autotools we still want to set these variables before configuring SDL.
-
bunnei authored
yuzu: main: Ensure enough space is available for RomFS dumping
-
german77 authored
-
Mai M authored
Implement/Port Fastmem from Citra to Yuzu
-
Morph authored
This warns the user if there isn't enough free space to dump the entire RomFS to disk. It requires at least the size of the extracted RomFS + 1 GiB as a buffer of free space.
-
bunnei authored
kernel: KLightConditionVariable: Update implementation to 12.x
-
Markus Wick authored
This falls back to the old approach of using a virtual buffer. Windows is untested, but this build should fix support for Windows < 10 v1803. However without fastmem support at all.
-
ReinUsesLisp authored
Workaround old headers and libraries shipped on MinGW.
-
Fernando Sahmkow authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
FernandoS27 authored
-
Markus Wick authored
In theory, if we have 2 MB continously mapped, this should save one layer of TLB. Let's make it at least more likely by aligning the memory.
-
Markus Wick authored
-
ReinUsesLisp authored
-
Markus Wick authored
-
ReinUsesLisp authored
-
Morph authored
externals: Update SDL to 2f248a2a
-
lat9nq authored
-
bunnei authored
cmake: Use autotools for libusb linking generally on GNU, and cleanup
-
bunnei authored
Fix GCC undefined behavior sanitizer.
-
Morph authored
-
Morph authored
Updates the implementation of KLightConditionVariable to FW 12.x
-
- 10 Jun, 2021 5 commits
-
-
bunnei authored
hle: service: sm: Remove redundant session reservation, etc.
-
Markus Wick authored
* Wrong alignment in u64 LOG_DEBUG -> memcpy. * Huge shift exponent in stride calculation for linear buffer, unused result -> skipped. * Large shift in buffer cache if word = 0, skip checking for set bits. Non of those were critical, so this should not change any behavior. At least with the assumption, that the last one used masking behavior, which always yield continuous_bits = 0.
-
bunnei authored
- We were double-reserving, causing us to run out of sessions in Pokemon Sword & Shield.
-
bunnei authored
- Pokemon Sword/Shield are still hitting this for some reason, causing an svcBreak.
-
bunnei authored
hle: kernel: KServerSession: Fix client disconnected.
-