summaryrefslogtreecommitdiff
path: root/src/audio_core/stream.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-09-17 09:51:47 -0400
committerGravatar GitHub2018-09-17 09:51:47 -0400
commit076add4ccddff3940e20fc320615e3d330f77119 (patch)
treebacabcfed8665974c276489509a1caa330ad36a2 /src/audio_core/stream.h
parentMerge pull request #1329 from raven02/bgr5a1u (diff)
parentPort #4182 from Citra: "Prefix all size_t with std::" (diff)
downloadyuzu-076add4ccddff3940e20fc320615e3d330f77119.tar.gz
yuzu-076add4ccddff3940e20fc320615e3d330f77119.tar.xz
yuzu-076add4ccddff3940e20fc320615e3d330f77119.zip
Merge pull request #1326 from FearlessTobi/port-4182
Port #4182 from Citra: "Prefix all size_t with std::"
Diffstat (limited to 'src/audio_core/stream.h')
-rw-r--r--src/audio_core/stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/stream.h b/src/audio_core/stream.h
index 049b92ca9..3a435982d 100644
--- a/src/audio_core/stream.h
+++ b/src/audio_core/stream.h
@@ -49,7 +49,7 @@ public:
49 bool ContainsBuffer(Buffer::Tag tag) const; 49 bool ContainsBuffer(Buffer::Tag tag) const;
50 50
51 /// Returns a vector of recently released buffers specified by tag 51 /// Returns a vector of recently released buffers specified by tag
52 std::vector<Buffer::Tag> GetTagsAndReleaseBuffers(size_t max_count); 52 std::vector<Buffer::Tag> GetTagsAndReleaseBuffers(std::size_t max_count);
53 53
54 /// Returns true if the stream is currently playing 54 /// Returns true if the stream is currently playing
55 bool IsPlaying() const { 55 bool IsPlaying() const {
@@ -57,7 +57,7 @@ public:
57 } 57 }
58 58
59 /// Returns the number of queued buffers 59 /// Returns the number of queued buffers
60 size_t GetQueueSize() const { 60 std::size_t GetQueueSize() const {
61 return queued_buffers.size(); 61 return queued_buffers.size();
62 } 62 }
63 63