- 31 Dec, 2018 1 commit
-
-
Zach Hilman authored
-
- 29 Dec, 2018 1 commit
-
-
Zach Hilman authored
-
- 28 Dec, 2018 15 commits
-
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
Using a custom reimplementation of QWebEngineView and an injector script.
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
Needed for manual RomFS extraction, as Full generates an extra directory and Truncated generates variable results.
-
Zach Hilman authored
-
bunnei authored
file_sys/program_metadata: Print out more descriptive address space descriptions
-
bunnei authored
kernel/process: Remove most allocation functions from Process' interface
-
Lioncash authored
Provides extra information that makes it easier to tell if an executable being run is using a 36-bit address space or a 39-bit address space. While we don't support AArch32 executables yet, this also puts in distinguishing information for the 32-bit address space types as well.
-
Lioncash authored
In all cases that these functions are needed, the VMManager can just be retrieved and used instead of providing the same functions in Process' interface. This also makes it a little nicer dependency-wise, since it gets rid of cases where the VMManager interface was being used, and then switched over to using the interface for a Process instance. Instead, it makes all accesses uniform and uses the VMManager instance for all necessary tasks. All the basic memory mapping functions did was forward to the Process' VMManager instance anyways.
-
- 27 Dec, 2018 18 commits
-
-
bunnei authored
Add missing uintBitsToFloat to SetRegisterToHalfFloat
-
Rodolfo Bogado authored
-
bunnei authored
kernel: Handle kernel capability descriptors
-
bunnei authored
Improve Zero flag implementation
-
bunnei authored
hid: Fix SetNpadJoyHoldType and improve logging.
-
bunnei authored
npad: Remove code to invert input in horizontal mode.
-
bunnei authored
kernel/vm_manager: Reset region attributes when unmapping a VMA
-
bunnei authored
am: Implement GetSaveDataSize and ExtendSaveData using files
-
Zach Hilman authored
These functions come in a pair and are needed by Smash Ultimate, Minecraft, and Skyrim, amongst others.
-
Zach Hilman authored
-
Zach Hilman authored
This stores a file in the save directory called '.yuzu_save_size' which stores the two save sizes (normal area and journaled area) sequentially as u64s.
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
Serves no actual purpose in this instance besides making NACP's copy assignment deleted, which is not intended behavior.
-
Zach Hilman authored
Allows these functions to compile when T is not u8.
-
bunnei authored
renderer_opengl: Correct forward declaration of FramebufferLayout
-
bunnei authored
configure_per_general: Mark UI strings as translatable in the constructor
-
Lioncash authored
Like the other members related to memory regions, the attributes need to be reset back to their defaults as well.
-
- 26 Dec, 2018 5 commits
-
-
bunnei authored
configure_input_simple: Make input profile array constexpr
-
Lioncash authored
These are user-facing strings, so they should be translatable.
-
Lioncash authored
Calling tr() from a file-scope array isn't advisable, since it can be executed before the Qt libraries are even fully initialized, which can lead to crashes. Instead, the translatable strings should be annotated, and the tr() function should be called at the string's usage site.
-
Lioncash authored
This is actually a struct, not a class, which can lead to compilation warnings.
-
Rodolfo Bogado authored
-