summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-04-08 03:41:14 +0200
committergerman77 <juangerman-13@hotmail.com>2021-04-09 03:40:24 +0200
commit6219da627b4728efacb1b6844b67aaf36bafc683 (patch)
treefab3abc2ed0d19add94486eec0846bfa3cb5e3fa
parentaudrec_a: Use proper names (diff)
downloadyuzu-6219da627b4728efacb1b6844b67aaf36bafc683.tar
yuzu-6219da627b4728efacb1b6844b67aaf36bafc683.tar.gz
yuzu-6219da627b4728efacb1b6844b67aaf36bafc683.tar.bz2
yuzu-6219da627b4728efacb1b6844b67aaf36bafc683.tar.lz
yuzu-6219da627b4728efacb1b6844b67aaf36bafc683.tar.xz
yuzu-6219da627b4728efacb1b6844b67aaf36bafc683.tar.zst
yuzu-6219da627b4728efacb1b6844b67aaf36bafc683.zip
-rw-r--r--src/core/hle/service/audio/audrec_u.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/hle/service/audio/audrec_u.cpp b/src/core/hle/service/audio/audrec_u.cpp
index eb5c63c62..74a65ccff 100644
--- a/src/core/hle/service/audio/audrec_u.cpp
+++ b/src/core/hle/service/audio/audrec_u.cpp
@@ -13,16 +13,17 @@ public:
// clang-format off
static const FunctionInfo functions[] = {
{0, nullptr, "GetFinalOutputRecorderState"},
- {1, nullptr, "StartFinalOutputRecorder"},
- {2, nullptr, "StopFinalOutputRecorder"},
+ {1, nullptr, "Start"},
+ {2, nullptr, "Stop"},
{3, nullptr, "AppendFinalOutputRecorderBuffer"},
{4, nullptr, "RegisterBufferEvent"},
- {5, nullptr, "GetReleasedFinalOutputRecorderBuffer"},
+ {5, nullptr, "GetReleasedFinalOutputRecorderBuffers"},
{6, nullptr, "ContainsFinalOutputRecorderBuffer"},
{7, nullptr, "GetFinalOutputRecorderBufferEndTime"},
{8, nullptr, "AppendFinalOutputRecorderBufferAuto"},
{9, nullptr, "GetReleasedFinalOutputRecorderBufferAuto"},
{10, nullptr, "FlushFinalOutputRecorderBuffers"},
+ {11, nullptr, "AttachWorkBuffer"},
};
// clang-format on