Stratosphere: Make TODOs for Loader::CreateProcess().

This commit is contained in:
Michael Scire
2018-04-23 13:33:56 -06:00
parent 0075a42d39
commit 0e11788e43
3 changed files with 60 additions and 2 deletions

View File

@@ -6,6 +6,13 @@
static NpdmUtils::NpdmCache g_npdm_cache = {0};
Result NpdmUtils::LoadNpdmFromCache(u64 tid, NpdmInfo *out) {
if (g_npdm_cache.info.title_id != tid) {
return LoadNpdm(tid, out);
}
*out = g_npdm_cache.info;
return 0;
}
Result NpdmUtils::LoadNpdm(u64 tid, NpdmInfo *out) {
Result rc;