summaryrefslogtreecommitdiffstats
path: root/src/audio_core/buffer.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-02-17 17:26:33 +0100
committerGitHub <noreply@github.com>2019-02-17 17:26:33 +0100
commit2bb02a0b7896320e6fb7cef6792fa8faeb095091 (patch)
tree23a99542a3d1d0be7982b3dff9c355c3a8fc9cbb /src/audio_core/buffer.h
parentMerge pull request #2133 from lioncash/arbiter (diff)
parentaudio_core/buffer: Make const and non-const getter for samples consistent (diff)
downloadyuzu-2bb02a0b7896320e6fb7cef6792fa8faeb095091.tar
yuzu-2bb02a0b7896320e6fb7cef6792fa8faeb095091.tar.gz
yuzu-2bb02a0b7896320e6fb7cef6792fa8faeb095091.tar.bz2
yuzu-2bb02a0b7896320e6fb7cef6792fa8faeb095091.tar.lz
yuzu-2bb02a0b7896320e6fb7cef6792fa8faeb095091.tar.xz
yuzu-2bb02a0b7896320e6fb7cef6792fa8faeb095091.tar.zst
yuzu-2bb02a0b7896320e6fb7cef6792fa8faeb095091.zip
Diffstat (limited to 'src/audio_core/buffer.h')
-rw-r--r--src/audio_core/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/buffer.h b/src/audio_core/buffer.h
index a323b23ec..5ee09e9aa 100644
--- a/src/audio_core/buffer.h
+++ b/src/audio_core/buffer.h
@@ -21,7 +21,7 @@ public:
Buffer(Tag tag, std::vector<s16>&& samples) : tag{tag}, samples{std::move(samples)} {}
/// Returns the raw audio data for the buffer
- std::vector<s16>& Samples() {
+ std::vector<s16>& GetSamples() {
return samples;
}