diff options
| author | 2021-04-07 19:38:34 -0600 | |
|---|---|---|
| committer | 2021-04-08 19:40:24 -0600 | |
| commit | 5ce97bf0a0917f68acf2d88ff091ddb064bff7ff (patch) | |
| tree | ae6f7ea3270197e57a1e400e01bebf3f24c9d8ca /src/core | |
| parent | audout_u: Use proper names (diff) | |
| download | yuzu-5ce97bf0a0917f68acf2d88ff091ddb064bff7ff.tar.gz yuzu-5ce97bf0a0917f68acf2d88ff091ddb064bff7ff.tar.xz yuzu-5ce97bf0a0917f68acf2d88ff091ddb064bff7ff.zip | |
audrec_a: Use proper names
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/audio/audrec_a.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audrec_a.cpp b/src/core/hle/service/audio/audrec_a.cpp index c5ab7cad4..70fc17ae2 100644 --- a/src/core/hle/service/audio/audrec_a.cpp +++ b/src/core/hle/service/audio/audrec_a.cpp | |||
| @@ -9,8 +9,8 @@ namespace Service::Audio { | |||
| 9 | AudRecA::AudRecA(Core::System& system_) : ServiceFramework{system_, "audrec:a"} { | 9 | AudRecA::AudRecA(Core::System& system_) : ServiceFramework{system_, "audrec:a"} { |
| 10 | // clang-format off | 10 | // clang-format off |
| 11 | static const FunctionInfo functions[] = { | 11 | static const FunctionInfo functions[] = { |
| 12 | {0, nullptr, "RequestSuspendFinalOutputRecorders"}, | 12 | {0, nullptr, "RequestSuspend"}, |
| 13 | {1, nullptr, "RequestResumeFinalOutputRecorders"}, | 13 | {1, nullptr, "RequestResume"}, |
| 14 | }; | 14 | }; |
| 15 | // clang-format on | 15 | // clang-format on |
| 16 | 16 | ||