- 01 Jul, 2021 2 commits
-
-
lat9nq authored
Fixes Disgaea 6 Demo issues.
-
lat9nq authored
Also adds documentation for the ReadSetting function. Address review comments. Co-authored-by: Mai M. <mathew1800@gmail.com>
-
- 29 Jun, 2021 1 commit
-
-
lat9nq authored
bcat: Fix settings access telemetry_session: Fix settings accesses So this is what I get for testing with the web service disabled. touch_from_button: Fix settings access for clang
-
- 28 Jun, 2021 2 commits
-
-
lat9nq authored
For simple primitive settings, moves their defaults and labels to definition time. Also fixes typo and clang-format yuzu qt: config: Fix rng_seed
-
lat9nq authored
Creates a new BasicSettings class in common/settings, and forces setting a default and label for each setting that uses it in common/settings. Moves defaults and labels from both frontends into common settings. Creates a helper function in each frontend to facillitate reading the settings now with the new default and label properties. Settings::Setting is also now a subclass of Settings::BasicSetting. Also adds documentation for both Setting and BasicSetting.
-
- 26 Jun, 2021 2 commits
- 25 Jun, 2021 4 commits
-
-
Ameer J authored
vulkan_device: Make device memory match the rest of the file
-
ReinUsesLisp authored
Match the style in the file.
-
bunnei authored
astc: Various robustness enhancements for the gpu decoder
-
bunnei authored
common: Replace common_sizes into user-literals
-
- 24 Jun, 2021 7 commits
-
-
Wunkolo authored
Removes common_sizes.h in favor of having `_KiB`, `_MiB`, `_GiB`, etc user-literals within literals.h. To keep the global namespace clean, users will have to use: ``` using namespace Common::Literals; ``` to access these literals.
-
bunnei authored
general: Add missing #pragma once directives
-
Morph authored
-
Chloe authored
* Add missing includes * Add array
-
Schplee authored
-
Schplee authored
-
Schplee authored
-
- 23 Jun, 2021 15 commits
-
-
bunnei authored
externals: Update fmt to 8.0.0
-
bunnei authored
[audout] Implement GetAudioOutPlayedSampleCount
-
Lioncash authored
Also removes some deprecated API usages.
-
bunnei authored
maxwell3d: Add missing return in default SizeInBytes() case
-
Lioncash authored
We were returning '1' in ComponentCount()'s default case but were neglecting to do the same with SizeInBytes().
-
Lioncash authored
-
Mai M authored
GPU: Implement a garbage collector for GPU Caches (project Reaper+)
-
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 7 commits
-
-
bunnei authored
service: spl: Implement general SPL service
-
bunnei authored
service: time: Use GetFileRelative to get files within subdirectories
-
Fernando Sahmkow authored
-
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.
-