summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/codecctl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/audio/codecctl.h')
-rw-r--r--src/core/hle/service/audio/codecctl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/audio/codecctl.h b/src/core/hle/service/audio/codecctl.h
index 2fe75b6e2..58e53259e 100644
--- a/src/core/hle/service/audio/codecctl.h
+++ b/src/core/hle/service/audio/codecctl.h
@@ -6,15 +6,15 @@
#include "core/hle/service/service.h"
-namespace Kernel {
-class HLERequestContext;
+namespace Core {
+class System;
}
namespace Service::Audio {
class CodecCtl final : public ServiceFramework<CodecCtl> {
public:
- explicit CodecCtl();
+ explicit CodecCtl(Core::System& system_);
~CodecCtl() override;
};