aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/audio/audin_a.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-02-14 12:38:21 -0500
committerLiam <byteslice@airmail.cc>2023-02-14 12:38:21 -0500
commit79fbdfca170a8eec71f8e037df9132cfc6fc5f44 (patch)
treec4600d28974e8e75596570511d1767731fec3ab3 /src/core/hle/service/audio/audin_a.cpp
parent5f5a6e4b2e541e86c0bfdb99e3acfbbebe89a5d3 (diff)
service: remove deleted services
Diffstat (limited to 'src/core/hle/service/audio/audin_a.cpp')
-rw-r--r--src/core/hle/service/audio/audin_a.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/core/hle/service/audio/audin_a.cpp b/src/core/hle/service/audio/audin_a.cpp
deleted file mode 100644
index 98f4a6048..000000000
--- a/src/core/hle/service/audio/audin_a.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#include "core/hle/service/audio/audin_a.h"
-
-namespace Service::Audio {
-
-AudInA::AudInA(Core::System& system_) : ServiceFramework{system_, "audin:a"} {
- // clang-format off
- static const FunctionInfo functions[] = {
- {0, nullptr, "RequestSuspend"},
- {1, nullptr, "RequestResume"},
- {2, nullptr, "GetProcessMasterVolume"},
- {3, nullptr, "SetProcessMasterVolume"},
- };
- // clang-format on
-
- RegisterHandlers(functions);
-}
-
-AudInA::~AudInA() = default;
-
-} // namespace Service::Audio