summaryrefslogtreecommitdiffstats
path: root/src/audio_core/renderer/behavior/behavior_info.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-09-16 15:55:14 +0200
committerLioncash <mathew1800@gmail.com>2022-09-16 15:55:17 +0200
commitb2c2138af7c0ed5e6c254c9c62e19a30e80b3b42 (patch)
treefe23edd95c436169c80cdb7455e4b8bb76e55ae9 /src/audio_core/renderer/behavior/behavior_info.h
parentaudio_device: Mark GetDeviceVolume as const (diff)
downloadyuzu-b2c2138af7c0ed5e6c254c9c62e19a30e80b3b42.tar
yuzu-b2c2138af7c0ed5e6c254c9c62e19a30e80b3b42.tar.gz
yuzu-b2c2138af7c0ed5e6c254c9c62e19a30e80b3b42.tar.bz2
yuzu-b2c2138af7c0ed5e6c254c9c62e19a30e80b3b42.tar.lz
yuzu-b2c2138af7c0ed5e6c254c9c62e19a30e80b3b42.tar.xz
yuzu-b2c2138af7c0ed5e6c254c9c62e19a30e80b3b42.tar.zst
yuzu-b2c2138af7c0ed5e6c254c9c62e19a30e80b3b42.zip
Diffstat (limited to 'src/audio_core/renderer/behavior/behavior_info.h')
-rw-r--r--src/audio_core/renderer/behavior/behavior_info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/renderer/behavior/behavior_info.h b/src/audio_core/renderer/behavior/behavior_info.h
index 7333c297f..15c948344 100644
--- a/src/audio_core/renderer/behavior/behavior_info.h
+++ b/src/audio_core/renderer/behavior/behavior_info.h
@@ -94,7 +94,7 @@ public:
*
* @param error - The new error.
*/
- void AppendError(ErrorInfo& error);
+ void AppendError(const ErrorInfo& error);
/**
* Copy errors to the given output container.
@@ -102,7 +102,7 @@ public:
* @param out_errors - Output container to receive the errors.
* @param out_count - The number of errors written.
*/
- void CopyErrorInfo(std::span<ErrorInfo> out_errors, u32& out_count);
+ void CopyErrorInfo(std::span<ErrorInfo> out_errors, u32& out_count) const;
/**
* Update the behaviour flags.