diff options
| author | bunnei <bunneidev@gmail.com> | 2022-09-16 23:51:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-16 23:51:31 -0700 |
| commit | 4a7a7713401983f94b6c07fa07cbbbfa4025556c (patch) | |
| tree | ee9f4cac999d8c4f7e5c1d5d51e624ff82580607 /src/audio_core/renderer/adsp/audio_renderer.h | |
| parent | eb726677b21446145898065fa79f798a6c8d2c9d (diff) | |
| parent | 7e3cdfc453e27af80238d0ec9cd5005e1f189319 (diff) | |
Merge pull request #8914 from lioncash/audio-const
audio_core: Mark several member functions as const
Diffstat (limited to 'src/audio_core/renderer/adsp/audio_renderer.h')
| -rw-r--r-- | src/audio_core/renderer/adsp/audio_renderer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/renderer/adsp/audio_renderer.h b/src/audio_core/renderer/adsp/audio_renderer.h index 49f66f21c..02e923c84 100644 --- a/src/audio_core/renderer/adsp/audio_renderer.h +++ b/src/audio_core/renderer/adsp/audio_renderer.h @@ -91,7 +91,7 @@ public: * @param session_id - The session id to get (0 or 1). * @param buffer - The command buffer to set. */ - void SetCommandBuffer(u32 session_id, CommandBuffer& buffer); + void SetCommandBuffer(u32 session_id, const CommandBuffer& buffer); /** * Get the total render time taken for the last command lists sent. |
