diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2020-06-28 10:47:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 10:47:27 +0200 |
commit | 26e243d2d7108d4481615afbdceaf3dbba7b8da4 (patch) | |
tree | d924ab74155729f0995d3ca0c663372f3ff81cbb /src/core | |
parent | Merge pull request #4190 from VolcaEM/patch-15 (diff) | |
parent | ncm: Update function table (diff) | |
download | yuzu-26e243d2d7108d4481615afbdceaf3dbba7b8da4.tar yuzu-26e243d2d7108d4481615afbdceaf3dbba7b8da4.tar.gz yuzu-26e243d2d7108d4481615afbdceaf3dbba7b8da4.tar.bz2 yuzu-26e243d2d7108d4481615afbdceaf3dbba7b8da4.tar.lz yuzu-26e243d2d7108d4481615afbdceaf3dbba7b8da4.tar.xz yuzu-26e243d2d7108d4481615afbdceaf3dbba7b8da4.tar.zst yuzu-26e243d2d7108d4481615afbdceaf3dbba7b8da4.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/service/ncm/ncm.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/core/hle/service/ncm/ncm.cpp b/src/core/hle/service/ncm/ncm.cpp index ec9aae04a..e38dea1f4 100644 --- a/src/core/hle/service/ncm/ncm.cpp +++ b/src/core/hle/service/ncm/ncm.cpp @@ -28,16 +28,16 @@ public: {7, nullptr, "ResolveApplicationLegalInformationPath"}, {8, nullptr, "RedirectApplicationLegalInformationPath"}, {9, nullptr, "Refresh"}, - {10, nullptr, "RedirectProgramPath2"}, - {11, nullptr, "Refresh2"}, - {12, nullptr, "DeleteProgramPath"}, - {13, nullptr, "DeleteApplicationControlPath"}, - {14, nullptr, "DeleteApplicationHtmlDocumentPath"}, - {15, nullptr, "DeleteApplicationLegalInformationPath"}, - {16, nullptr, ""}, - {17, nullptr, ""}, - {18, nullptr, ""}, - {19, nullptr, ""}, + {10, nullptr, "RedirectApplicationProgramPath"}, + {11, nullptr, "ClearApplicationRedirection"}, + {12, nullptr, "EraseProgramRedirection"}, + {13, nullptr, "EraseApplicationControlRedirection"}, + {14, nullptr, "EraseApplicationHtmlDocumentRedirection"}, + {15, nullptr, "EraseApplicationLegalInformationRedirection"}, + {16, nullptr, "ResolveProgramPathForDebug"}, + {17, nullptr, "RedirectProgramPathForDebug"}, + {18, nullptr, "RedirectApplicationProgramPathForDebug"}, + {19, nullptr, "EraseProgramRedirectionForDebug"}, }; // clang-format on |