- 30 Dec, 2018 1 commit
-
-
Lioncash authored
Moves some variables closer to their actual usage sites.
-
- 29 Dec, 2018 1 commit
-
-
Lioncash authored
-
- 28 Dec, 2018 6 commits
-
-
bunnei authored
audio_core: Convert LOG_CRITICAL + UNREACHABLE over to UNIMPLEMENTED/UNIMPLEMENTED_MSG
-
Lioncash authored
These two macros being used in tandem were used prior to the introduction of UNIMPLEMENTED and UNIMPLEMENTED_MSG. This provides equivalent behavior, just with less typing/reading involved.
-
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 10 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
-
David authored
* Fixed shader linking error due to TLDS coord should be coords * Fix remaining coords
-
bunnei authored
svc: Implement SetThreadActivity (thread suspension)
-
bunnei authored
shader_bytecode: Fixup TEXS.F16 encoding
-
bunnei authored
- This was incorrect, the game appears to handle this for us. - Fixes horizontal mode with Puyo Puyo Tetris and Super Mario Odyssey.
-
ReinUsesLisp authored
-
- 23 Dec, 2018 4 commits
-
-
bunnei authored
Port citra-emu/citra#4164: "citra_qt, video_core: Screenshot functionality"
-
bunnei authored
common/quaternion: Ensure that w is always initialized
-
bunnei authored
am: Implement HLE profile selector applet
-
bunnei authored
configure_input: Add Controller Setup Profiles and simplify input UI
-