diff options
author | Lioncash <mathew1800@gmail.com> | 2019-01-30 04:29:07 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-01-30 04:50:26 +0100 |
commit | 1710847d088400cfcb15ba65d938c99ae5816c45 (patch) | |
tree | ccb2556acccaec863985d6e5cef39774d99555d1 | |
parent | service/audio: Update function tables (diff) | |
download | yuzu-1710847d088400cfcb15ba65d938c99ae5816c45.tar yuzu-1710847d088400cfcb15ba65d938c99ae5816c45.tar.gz yuzu-1710847d088400cfcb15ba65d938c99ae5816c45.tar.bz2 yuzu-1710847d088400cfcb15ba65d938c99ae5816c45.tar.lz yuzu-1710847d088400cfcb15ba65d938c99ae5816c45.tar.xz yuzu-1710847d088400cfcb15ba65d938c99ae5816c45.tar.zst yuzu-1710847d088400cfcb15ba65d938c99ae5816c45.zip |
-rw-r--r-- | src/core/hle/service/ncm/ncm.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/ncm/ncm.cpp b/src/core/hle/service/ncm/ncm.cpp index 0297edca0..5d31f638f 100644 --- a/src/core/hle/service/ncm/ncm.cpp +++ b/src/core/hle/service/ncm/ncm.cpp @@ -40,10 +40,10 @@ public: {6, nullptr, "CloseContentStorageForcibly"}, {7, nullptr, "CloseContentMetaDatabaseForcibly"}, {8, nullptr, "CleanupContentMetaDatabase"}, - {9, nullptr, "OpenContentStorage2"}, - {10, nullptr, "CloseContentStorage"}, - {11, nullptr, "OpenContentMetaDatabase2"}, - {12, nullptr, "CloseContentMetaDatabase"}, + {9, nullptr, "ActivateContentStorage"}, + {10, nullptr, "InactivateContentStorage"}, + {11, nullptr, "ActivateContentMetaDatabase"}, + {12, nullptr, "InactivateContentMetaDatabase"}, }; // clang-format on |