diff options
author | VolcaEM <63682805+VolcaEM@users.noreply.github.com> | 2020-06-27 13:05:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 13:05:22 +0200 |
commit | c56414b80d945b286b6e98bc689146211615cd5a (patch) | |
tree | 6d41d154f829cd7dd6f0b14c5dba596c48c3ea44 /src/core/hle/service | |
parent | Merge pull request #4097 from kevinxucs/kevinxucs/device-pixel-scaling-float (diff) | |
download | yuzu-c56414b80d945b286b6e98bc689146211615cd5a.tar yuzu-c56414b80d945b286b6e98bc689146211615cd5a.tar.gz yuzu-c56414b80d945b286b6e98bc689146211615cd5a.tar.bz2 yuzu-c56414b80d945b286b6e98bc689146211615cd5a.tar.lz yuzu-c56414b80d945b286b6e98bc689146211615cd5a.tar.xz yuzu-c56414b80d945b286b6e98bc689146211615cd5a.tar.zst yuzu-c56414b80d945b286b6e98bc689146211615cd5a.zip |
Diffstat (limited to 'src/core/hle/service')
-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 |