summaryrefslogtreecommitdiffstats
path: root/src/audio_core/effect_context.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-25 06:28:35 +0200
committerLioncash <mathew1800@gmail.com>2020-09-25 07:22:47 +0200
commit8b4ecf22d485958f69ecbd2fa4ca55d9ce393826 (patch)
tree8f920f5ff338f8dcc38fea54c5f3df30c5d35c44 /src/audio_core/effect_context.h
parenteffect_context: Make use of explicit where applicable (diff)
downloadyuzu-8b4ecf22d485958f69ecbd2fa4ca55d9ce393826.tar
yuzu-8b4ecf22d485958f69ecbd2fa4ca55d9ce393826.tar.gz
yuzu-8b4ecf22d485958f69ecbd2fa4ca55d9ce393826.tar.bz2
yuzu-8b4ecf22d485958f69ecbd2fa4ca55d9ce393826.tar.lz
yuzu-8b4ecf22d485958f69ecbd2fa4ca55d9ce393826.tar.xz
yuzu-8b4ecf22d485958f69ecbd2fa4ca55d9ce393826.tar.zst
yuzu-8b4ecf22d485958f69ecbd2fa4ca55d9ce393826.zip
Diffstat (limited to '')
-rw-r--r--src/audio_core/effect_context.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio_core/effect_context.h b/src/audio_core/effect_context.h
index c2d2aa3ba..2c4ce53ef 100644
--- a/src/audio_core/effect_context.h
+++ b/src/audio_core/effect_context.h
@@ -257,10 +257,10 @@ public:
void Update(EffectInfo::InParams& in_params) override;
void UpdateForCommandGeneration() override;
- const VAddr GetSendInfo() const;
- const VAddr GetSendBuffer() const;
- const VAddr GetRecvInfo() const;
- const VAddr GetRecvBuffer() const;
+ VAddr GetSendInfo() const;
+ VAddr GetSendBuffer() const;
+ VAddr GetRecvInfo() const;
+ VAddr GetRecvBuffer() const;
private:
VAddr send_info{};