summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHexagon12 <Hexagon12@users.noreply.github.com>2018-04-10 17:53:33 +0200
committerGitHub <noreply@github.com>2018-04-10 17:53:33 +0200
commitc0011fdacd251105702cbed6e32c67b2cceaa74a (patch)
treef99a002daf128d8e7214368d4c2b9dea9847e766 /src
parentUpdated audout with more service names. (diff)
downloadyuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.tar
yuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.tar.gz
yuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.tar.bz2
yuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.tar.lz
yuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.tar.xz
yuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.tar.zst
yuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/audio/audrec_u.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/core/hle/service/audio/audrec_u.cpp b/src/core/hle/service/audio/audrec_u.cpp
index f2626ec70..953104f19 100644
--- a/src/core/hle/service/audio/audrec_u.cpp
+++ b/src/core/hle/service/audio/audrec_u.cpp
@@ -14,13 +14,15 @@ class IFinalOutputRecorder final : public ServiceFramework<IFinalOutputRecorder>
public:
IFinalOutputRecorder() : ServiceFramework("IFinalOutputRecorder") {
static const FunctionInfo functions[] = {
- {0x0, nullptr, "GetFinalOutputRecorderState"},
- {0x1, nullptr, "StartFinalOutputRecorder"},
- {0x2, nullptr, "StopFinalOutputRecorder"},
- {0x3, nullptr, "AppendFinalOutputRecorderBuffer"},
- {0x4, nullptr, "RegisterBufferEvent"},
- {0x5, nullptr, "GetReleasedFinalOutputRecorderBuffer"},
- {0x6, nullptr, "ContainsFinalOutputRecorderBuffer"},
+ {0, nullptr, "GetFinalOutputRecorderState"},
+ {1, nullptr, "StartFinalOutputRecorder"},
+ {2, nullptr, "StopFinalOutputRecorder"},
+ {3, nullptr, "AppendFinalOutputRecorderBuffer"},
+ {4, nullptr, "RegisterBufferEvent"},
+ {5, nullptr, "GetReleasedFinalOutputRecorderBuffer"},
+ {6, nullptr, "ContainsFinalOutputRecorderBuffer"},
+ {8, nullptr, "AppendFinalOutputRecorderBufferAuto"},
+ {9, nullptr, "GetReleasedFinalOutputRecorderBufferAuto"},
};
RegisterHandlers(functions);
}