diff options
author | Lioncash <mathew1800@gmail.com> | 2022-09-16 16:00:52 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-09-16 16:00:52 +0200 |
commit | d5d632264086756f0202d15ad7f1e20c49b64934 (patch) | |
tree | 05f92417f349c24874798d87d99b4f7bf8d3747a /src | |
parent | node_states: Mark relevant member functions as const (diff) | |
download | yuzu-d5d632264086756f0202d15ad7f1e20c49b64934.tar yuzu-d5d632264086756f0202d15ad7f1e20c49b64934.tar.gz yuzu-d5d632264086756f0202d15ad7f1e20c49b64934.tar.bz2 yuzu-d5d632264086756f0202d15ad7f1e20c49b64934.tar.lz yuzu-d5d632264086756f0202d15ad7f1e20c49b64934.tar.xz yuzu-d5d632264086756f0202d15ad7f1e20c49b64934.tar.zst yuzu-d5d632264086756f0202d15ad7f1e20c49b64934.zip |
Diffstat (limited to '')
-rw-r--r-- | src/audio_core/sink/sink_stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/sink/sink_stream.h b/src/audio_core/sink/sink_stream.h index 9366ebbd3..38a4b2f51 100644 --- a/src/audio_core/sink/sink_stream.h +++ b/src/audio_core/sink/sink_stream.h @@ -151,7 +151,7 @@ public: * * @return The number of queued buffers. */ - u32 GetQueueSize() { + u32 GetQueueSize() const { return queued_buffers.load(); } |