- Sep 22, 2019
-
-
David Marcec authored
-
David Marcec authored
-
David Marcec authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
- Sep 21, 2019
-
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
Creates a default save data for the application given a user ID.
-
Zach Hilman authored
-
Zach Hilman authored
-
David Marcec authored
These functions are not stubbed and are called fairly often. Due to the nature of how often they're called, we should keep them marked as LOG_TRACE instead of LOG_DEBUG or LOG_WARNING
-
- Sep 05, 2019
-
-
Lioncash authored
Avoids the use of global accessors, removing the reliance on global state. This also makes dependencies explicit in the interface, as opposed to being hidden
-
- Sep 04, 2019
-
-
Lioncash authored
Corrects the parameter names within the doxygen comments so that they resolve properly.
-
Lioncash authored
Narrows the scope of variables down to where they're only necessary.
-
mailwl authored
* AM: Implement IApplicationFunctions::GetGpuErrorDetectedSystemEvent * Remove unneeded event clear * Fix event name
-
Morph1984 authored
Co-Authored-By:
David <25727384+ogniK5377@users.noreply.github.com>
-
Morph1984 authored
-
Morph1984 authored
-
Morph1984 authored
-
Morph1984 authored
-
Morph1984 authored
-
Morph1984 authored
-
Morph1984 authored
-
Morph1984 authored
We can remove this since its already a f32 value
-
Morph1984 authored
-
Morph1984 authored
-
Morph1984 authored
Volume is a f32 value. (SwIPC describes it as a u32, but it is actually f32 as corroborated by switchbrew docs and SetAudioDeviceOutputVolume) ```cpp const f32 volume = rp.Pop<f32>(); ```
-
- Sep 03, 2019
-
-
Morph1984 authored
-
- Aug 29, 2019
-
-
Lioncash authored
If an unmapping operation fails, we shouldn't be decrementing the amount of memory mapped and returning that the operation was successful. We should actually be returning the error code in this case.
-
Lioncash authored
Avoids potentially expensive (depending on the size of the memory block) allocations by reserving the necessary memory before performing both insertions. This avoids scenarios where the second insert may cause a reallocation to occur.
-
Lioncash authored
Avoids an unnecessary atomic reference count increment and decrement.
-
Lioncash authored
Avoids needing to read the same long sequence of code in both code paths. Also makes it slightly nicer to read and debug, as the locals will be able to be shown in the debugger.
-
Lioncash authored
Same behavior, one less magic constant to read.
-
Lioncash authored
Assertions already log out the function name, so there's no need to manually include the function name in the assertion strings.
-