- Jun 05, 2019
- May 29, 2019
-
-
Lioncash authored
The contents of these includes aren't used anywhere in this translation unit.
-
- May 27, 2019
-
-
Zach Hilman authored
Returns an object of type IAddOnContentLocationResolver for the provided StorageId.
-
- May 26, 2019
-
-
Zach Hilman authored
Returns an object of type IRegisteredLocationResolver for the StorageId.
-
Zach Hilman authored
Returns an object of type ILocationResolver with the provided StorageId.
-
- May 23, 2019
-
-
Michael Scire authored
-
Michael Scire authored
-
Michael Scire authored
-
Michael Scire authored
-
Michael Scire authored
-
Lioncash authored
Previously, the code was accumulating data into a std::vector and then tossing all of it away if a setting was disabled. Instead, we can just check if it's disabled and do no work at all if possible. If it's enabled, then we can append to the vector and allocate. Unlikely to impact usage much, but it is slightly less sloppy with resources.
-
Lioncash authored
Removes two header dependencies related to file handling that aren't actually used within the source file.
-
Lioncash authored
A few of the aoc service stubs/implementations weren't fully popping all of the parameters passed to them. This ensures that all parameters are popped and, at minimum, logged out.
-
- May 18, 2019
-
-
Lioncash authored
Previously this would fall through and return successfully, despite being an out of bounds read or write.
-
Lioncash authored
Renames the members to more accurately indicate what they signify. "OneShot" and "Sticky" are kind of ambiguous identifiers for the reset types, and can be kind of misleading. Automatic and Manual communicate the kind of reset type in a clearer manner. Either the event is automatically reset, or it isn't and must be manually cleared. The "OneShot" and "Sticky" terminology is just a hold-over from Citra where the kernel had a third type of event reset type known as "Pulse". Given the Switch kernel only has two forms of event reset types, we don't need to keep the old terminology around anymore.
-
Weiyi Wang authored
This reduces the boilerplate that services have to write out the current thread explicitly. Using current thread instead of client thread is also semantically incorrect, and will be a problem when we implement multicore (at which time there will be multiple current threads)
-
- May 10, 2019
-
-
Lioncash authored
This corrects cases where it was possible to write more entries into the write buffer than were requested. Now, we check the size of the buffer before actually writing into them. We were also returning the wrong value for GetAvailableLanguageCodeCount2(). This was previously returning 64, but only 17 should have been returned. 64 entries is the size of the static array used in MakeLanguageCode() within the service binary itself, but isn't the actual total number of language codes present.
-
- May 01, 2019
-
-
Lioncash authored
Also introduced in REV5 was a variable-size audio command buffer. This also affects how the size of the work buffer should be determined, so we can add handling for this as well. Thankfully, no other alterations were made to how the work buffer size is calculated in 7.0.0-8.0.0. There were indeed changes made to to how some of the actual audio commands are generated though (particularly in REV7), however they don't apply here.
-
Lioncash authored
Introduced in REV5. This is trivial to add support for, now that everything isn't a mess of random magic constant values. All this is, is a change in data type sizes as far as this function cares.
-
Lioncash authored
"Unmagics" quite a few magic constants within this code, making it much easier to understand. Particularly given this factors out specific sections into their own self-contained lambda functions.
-
- Apr 28, 2019
-
-
Lioncash authored
The state of these service calls are still the same in version 8.0.0.
-
- Apr 25, 2019
-
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
Since the MiiManager was designed around the IPC interface, this is quite easy. Only functions that were clearly defined were implemented.
-
Zach Hilman authored
Provides serialization/deserialization to the database in system save files, accessors for database state and proper handling of both major Mii formats (MiiInfo and MiiStoreData)
-
Zach Hilman authored
Since the Mii database uses UUIDs very similar to the Accounts database, it makes no sense to not share code between them.
-
- Apr 18, 2019
-
-
Lioncash authored
These two service functions are literally hardcoded to always return these values without any other error checking.
-
- Apr 17, 2019
-
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
Responsible for displaying error codes and messages
-
Zach Hilman authored
As opposed to using Core::System::GetInstance()
-
Zach Hilman authored
-
Zach Hilman authored
-
- Apr 11, 2019
-
-
Lioncash authored
Updates function tables based off information from SwitchBrew.
-