diff options
author | makigumo <makigumo@users.noreply.github.com> | 2020-02-11 18:41:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-11 18:41:04 +0100 |
commit | 926ea5a16dad408bb4b51ed8c124fae05030e720 (patch) | |
tree | 2a2e83ebd54cf6a8e398d0a5accf30be5b16d09f /src/core | |
parent | Merge pull request #3376 from ReinUsesLisp/point-sprite (diff) | |
download | yuzu-926ea5a16dad408bb4b51ed8c124fae05030e720.tar yuzu-926ea5a16dad408bb4b51ed8c124fae05030e720.tar.gz yuzu-926ea5a16dad408bb4b51ed8c124fae05030e720.tar.bz2 yuzu-926ea5a16dad408bb4b51ed8c124fae05030e720.tar.lz yuzu-926ea5a16dad408bb4b51ed8c124fae05030e720.tar.xz yuzu-926ea5a16dad408bb4b51ed8c124fae05030e720.tar.zst yuzu-926ea5a16dad408bb4b51ed8c124fae05030e720.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/service/audio/hwopus.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/hwopus.cpp b/src/core/hle/service/audio/hwopus.cpp index cb839e4a2..d19513cbb 100644 --- a/src/core/hle/service/audio/hwopus.cpp +++ b/src/core/hle/service/audio/hwopus.cpp @@ -170,8 +170,10 @@ public: {3, nullptr, "SetContextForMultiStream"}, {4, &IHardwareOpusDecoderManager::DecodeInterleavedWithPerfOld, "DecodeInterleavedWithPerfOld"}, {5, nullptr, "DecodeInterleavedForMultiStreamWithPerfOld"}, - {6, &IHardwareOpusDecoderManager::DecodeInterleaved, "DecodeInterleaved"}, - {7, nullptr, "DecodeInterleavedForMultiStream"}, + {6, &IHardwareOpusDecoderManager::DecodeInterleaved, "DecodeInterleavedWithPerfAndResetOld"}, + {7, nullptr, "DecodeInterleavedForMultiStreamWithPerfAndResetOld"}, + {8, &IHardwareOpusDecoderManager::DecodeInterleaved, "DecodeInterleaved"}, + {9, nullptr, "DecodeInterleavedForMultiStream"}, }; // clang-format on |