- Oct 29, 2018
-
-
Zach Hilman authored
When enabled in settings, PatchNSO will dump the unmodified NSO that it was passed to a file named <build id>.nso in the dump root for the current title ID.
-
Zach Hilman authored
Also adds UI option in Debug > Dump section, with the idea later things to be dumped (i.e. other game data or textures, etc) will use the same group box.
-
Zach Hilman authored
Equates to yuzu_dir/dump/<title id>/
-
ReinUsesLisp authored
-
- Oct 28, 2018
-
-
Rodolfo Bogado authored
-
Michael authored
-
Tobias authored
-
FernandoS27 authored
-
Frederic L authored
* remove unnecessary if-statements * Addressed feedback
-
Rodolfo Bogado authored
-
Zach Hilman authored
Crypto revisions are hex numbers and this function only checks if the string is valid for stoul in base 16, so it should be isxdigit.
-
FernandoS27 authored
-
- Oct 27, 2018
-
-
FernandoS27 authored
-
Zach Hilman authored
Prevents nullptr bug when trying to dump the RomFS of an NSP resulting from secondary_loader not being initialized.
-
Frederic Laing authored
-
DeeJayBro authored
-
Lioncash authored
Avoids the need to put the scaling parameters all over the place for the common case. The only other time scaling is done is to generate the smaller 48x48 image, so this is fine.
-
Lioncash authored
Avoids the need to duplicate this all over the place, and makes it translator-friendly across the board.
-
Lioncash authored
We should display an error to the user if setting a user image for an account fails, rather than continuing onwards.
-
- Oct 26, 2018
-
-
Weiyi Wang authored
We already ignore them on listing devices. We should do the same when selecting devices. This fix a crash when opening a specific device while there is a null device in the list
-
Lioncash authored
Nothing from this enum is intended to be used outside of this function.
-
Lioncash authored
This retrieves: if (curr_thread == handle_thread) { result = total_thread_ticks + (hardware_tick_count - last_context_switch_ticks); } else if (curr_thread == handle_thread && sub_id == current_core_index) { result = hardware_tick_count - last_context_switch_ticks; }
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
- Oct 25, 2018
-
-
bunnei authored
- This is an incomplete implementation. It was tested with Super Mario Party.
-
bunnei authored
-
bunnei authored
Kernel/Memory: Added a function to first a suitable guest address at which to allocate a region of a given size.
-
bunnei authored
-
Lioncash authored
This should be localizable, since it's user-facing text.
-
Lioncash authored
We can just make the function accept an arbitrary ProfileManager reference and operate on that instead of tying the function to the class itself. This allows us to keep the function internal to the cpp file and removes the need to forward declare the UUID struct.
-
Lioncash authored
These should be initialized to deterministic values so it's easier to catch improper behavior, as it'll always be reproducable, instead of performing uninitialized reads.
-
Lioncash authored
This is a static function so we can just perform an assignment directly.
-
Lioncash authored
-
Lioncash authored
-
Lioncash authored
These are only used within this class, so we can make them private to keep their use contained. This also gets rid of the pre-Qt5 'slot' identifier, since Qt 5's connection syntax doesn't require a function to be declared a slot anymore.
-
Zach Hilman authored
Prevents a potential bug when using RLE records in an IPS patch.
-
- Oct 24, 2018
-
-
Lioncash authored
Updated based off the information provided by Hexkyz on Switchbrew.
-
Lioncash authored
This is just flat data, so it doesn't really need to be in the function itself. This also allows deduplicating the constant for the backup size in GetImageSize().
-
Lioncash authored
Silences compiler warnings related to truncation. This also introduces a small helper function to perform the clamping of the image size.
-