- Jun 20, 2019
-
-
bunnei authored
service/audio/audren_u: Correct event reset type for the system event
-
Frederic L authored
* CMake: Get Git submodule dependencies via CMake * CMakeLists: Fixed unintentional line break * travis: Bring parity between linux-mingw and linux build script * CMakeLists: Fixed typo in error message
-
- Jun 19, 2019
-
-
Zach Hilman authored
yuzu/configure_input: Add missing space in window title
-
Tobias authored
-
Tobias authored
-
Mat M authored
Added missing space between two words
-
Alex Subaric authored
Added missing whitespace character between two words in the "Warning Missing Derivation Components" warning message box.
-
Zach Hilman authored
Impl'd IsUserAccountSwitchLocked, SetAudioOutVolume, GetAudioOutVolume & Partial impl of GetAccumulatedSuspendedTickChangedEvent
-
- Jun 18, 2019
- Jun 16, 2019
-
-
David Marcec authored
-
David Marcec authored
-
David Marcec authored
-
David Marcec authored
Impl'd IsUserAccountSwitchLocked, SetAudioOutVolume, GetAudioOutVolume & Partial impl of GetAccumulatedSuspendedTickChangedEvent IPC-100 was changed to InitializeApplicationInfoOld instead of InitializeApplicationInfo. IPC-150 makes an indentical call to IPC-100 however does extra processing. They should not have the same name as it's quite confusing to debug.
-
Zach Hilman authored
shader: Split SSY and PBK stack
-
- Jun 15, 2019
-
-
Zach Hilman authored
common/hex_util: Combine HexVectorToString() and HexArrayToString()
-
- Jun 14, 2019
-
-
bunnei authored
file_sys/ips_layer: Remove unnecessary reserve() call
-
- Jun 12, 2019
-
-
Zach Hilman authored
kernel/vm_manager: Remove redundant Reset call in destructor
-
Zach Hilman authored
file_sys/card_image: Minor cleanup
-
Lioncash authored
Given 'replace' is assigned to on the following line, this isn't necessary, given the underlying data is going to be overwritten entirely.
-
Lioncash authored
Avoids potentially performing multiple reallocations (depending on the size of the input data) by reserving the necessary amount of memory ahead of time. This is trivially doable, so there's no harm in it.
-
Lioncash authored
These can be generified together by using a concept type to designate them. This also has the benefit of not making copies of potentially very large arrays.
-
Lioncash authored
We already support Rev 1+.
-
Lioncash authored
This is performing more work than would otherwise be necessary during VMManager's destruction. All we actually want to occur in this scenario is for any allocated memory to be freed, which will happen automatically as the VMManager instance goes out of scope. Anything else being done is simply unnecessary work.
-
bunnei authored
file_sys/nca_metadata: Update CNMT structures
-
bunnei authored
GPUVM: Correct GPU VM virtual address space
-
- Jun 11, 2019
-
-
Lioncash authored
Names a few more entries in relevant structures. Information based off SwitchBrew and my own RE.
-
Lioncash authored
Makes for nicer reading.
-
Lioncash authored
Makes for more consistent reading.
-
Lioncash authored
Same thing, significantly less noisy.
-
Lioncash authored
Same thing, less duplication. We can also std::move raw into the PartitionFilesystem constructor.
-
Lioncash authored
We can just use the size of the array to dehardcode it.
-
Lioncash authored
Same thing, less code.
-
- Jun 10, 2019
-
-
Zach Hilman authored
kernel/process: Make Create()'s name parameter be taken by value
-
Zach Hilman authored
kernel/svc: Handle TotalPhysicalMemoryAvailableWithoutMmHeap and TotalPhysicalMemoryUsedWithoutMmHeap
-
- Jun 09, 2019
-
-
Lioncash authored
Makes the interface more flexible in terms of how Create() may be called, while still allowing the parameter itself to be moved into.
-
Lioncash authored
Given we don't currently implement the personal heap yet, the existing memory querying functions are essentially doing what the memory querying types introduced in 6.0.0 do. So, we can build the necessary machinery over the top of those and just use them as part of info types.
-
Lioncash authored
Disambiguates and makes the name a little more consistent with TotalPhysicalMemoryUsed.
-
Lioncash authored
-
Fernando Sahmkow authored
-