- Oct 30, 2018
-
-
Lioncash authored
Updated based off information on SwitchBrew.
-
ReinUsesLisp authored
-
FernandoS27 authored
-
Lioncash authored
Cleans up unused includes and trims off some dependencies on externals.
-
Frederic L authored
* get rid of boost::optional * Remove optional references * Use std::reference_wrapper for optional references * Fix clang format * Fix clang format part 2 * Adressed feedback * Fix clang format and MacOS build
-
Lioncash authored
Gets rid of the need to call the getter and then check for null.
-
Lioncash authored
Nothing requires the shared owner ship here, so we can just return a plain pointer.
-
- Oct 29, 2018
-
-
fearlessTobi authored
-
ReinUsesLisp authored
-
- Oct 28, 2018
-
-
Rodolfo Bogado authored
-
FernandoS27 authored
-
FernandoS27 authored
-
FernandoS27 authored
-
FernandoS27 authored
-
FernandoS27 authored
-
FernandoS27 authored
-
FernandoS27 authored
-
Lioncash authored
-
Lioncash authored
Many of the Current<Thing> getters (as well as a few others) were missing const qualified variants, which makes it a pain to retrieve certain things from const qualified references to System.
-
Michael authored
-
Frederic Laing authored
-
Tobias authored
-
FernandoS27 authored
-
fearlessTobi 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
-