- 23 Jun, 2021 10 commits
-
-
Lioncash authored
Also removes some deprecated API usages.
-
Lioncash authored
-
Lioncash authored
Keeps us up to date with the latest major release. Also allows compilers that support it to perform compile-time format string checking.
-
Mai M authored
bootmanager: Use std::stop_source for stopping emulation
-
Morph authored
Simple resizing of Per-Game configuration window and removal of useless Help question mark button in the title bar
-
Mai M authored
common/detached_tasks: Wait for tasks before shutting down
-
Mai M authored
input_common/mouse_input: Fix data race
-
Mai M authored
npad: Fix data race when updating devices
-
OZtistic authored
Simple resizing of the Per-Game configuration window and removal of useless Help question mark button in the title bar
-
bunnei authored
common: fs: Miscellaneous changes
-
- 22 Jun, 2021 16 commits
-
-
bunnei authored
service: spl: Implement general SPL service
-
bunnei authored
service: time: Use GetFileRelative to get files within subdirectories
-
Morph authored
This provides a more concrete example of what a regular file is and isn't.
-
Morph authored
These enforce requiring the file to exist prior to opening.
-
Morph authored
This check was preventing files with the Write or Append file access modes from being created, as per the documented behavior in FileAccessMode. This amends the check to test for the existence of a filesystem object prior to checking whether it is a regular file. Thanks to liushuyu for pointing out that removing the check altogether would not guard against attempting to open non-regular files such as directories, symlinks, FIFO (pipes), sockets, block devices, or character devices. The documentation has also been updated for these functions to clarify that a file refers to a regular file.
-
Morph authored
Similarly, Flush() is typically called to attempt to flush a file into the disk. In the one case where this is used, we do not care whether the flush has succeeded or not, making [[nodiscard]] unnecessary.
-
Morph authored
There are a lot of scenarios where we don't particularly care whether or not the removal operation and just simply attempt a removal. As such, removing the [[nodiscard]] attribute is best for these functions.
-
bunnei authored
vk_master_semaphore: Use jthread for debug thread
-
bunnei authored
ci: windows: Copy the Qt styles directory when packaging
-
Mai M authored
core: Make is_powered_on atomic
-
Rodrigo Locatti authored
Fixes potential data races when shutting down.
-
Rodrigo Locatti authored
If this is not waited on, the synchronization primitives are destroyed whe main exits and the detached task ends up signalling garbage and not properly finishing.
-
Rodrigo Locatti authored
Add a lock to avoid data races. This reduces the number of -fsanitize=thread errors significantly.
-
Rodrigo Locatti authored
Fix data race using std::jthread and std::stop_token.
-
bunnei authored
kernel: Fix missing peak set in KResourceLimit::SetLimitValue
-
ReinUsesLisp authored
Use its std::stop_token to abort shader cache loading. Using std::stop_token instead of std::atomic_bool allows the usage of other utilities like std::stop_callback.
-
- 21 Jun, 2021 4 commits
-
-
ReinUsesLisp authored
-
bunnei authored
Update dynarmic and add new unsafe CPU option.
-
bunnei authored
nvflinger: Add experimental toggle to disable buffer swap interval limits
-
Mai M authored
externals: httplib: replace custom httplib header with upstream as submodule
-
- 20 Jun, 2021 1 commit
-
-
Fernando Sahmkow authored
-
- 19 Jun, 2021 3 commits
-
-
lat9nq authored
Qt can make use of qwindowsvistastyle.dll if present, and our MinGW container has the library, but it was not being copied during the packaging process. Thus, yuzu looked like a Windows 98 application when using the PR-verify artifacts. This copies over the DLL during packaging, for that sweet-sweet Windows Vista style. In addition, set the Qt plugins path instead of the plugins/platforms path. This way we can use the directory directly, rather than appending a `..` everytime we need something just outside of it.
-
Morph authored
host_memory: Correct MEM_RESERVE_PLACEHOLDER
-
lat9nq authored
Microsoft defines `MEM_RESERVE_PLACEHOLDER` as `0x00040000`, but our manually imported version of it drops the last zero.
-
- 18 Jun, 2021 6 commits
-
-
Vortex authored
This also includes a minor change to web_service.cpp - to fix compatibility with upstream changes.
-
Mai M authored
update submodule discord-rpc to latest [now deprecated]
-
Vortex authored
-
Morph authored
The timezone info file can be within subdirectories (such as Asia/Tokyo), use GetFileRelative instead of GetFile to get files within subdirectories.
-
Rodrigo Locatti authored
vulkan_debug_callback: Skip logging known false-positive validation errors
-
Morph authored
-