summaryrefslogtreecommitdiffstats
path: root/core/math/audio_frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/math/audio_frame.h')
-rw-r--r--core/math/audio_frame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/audio_frame.h b/core/math/audio_frame.h
index 91f533eafb..43d4a63cd3 100644
--- a/core/math/audio_frame.h
+++ b/core/math/audio_frame.h
@@ -121,7 +121,7 @@ struct AudioFrame {
r = p_frame.r;
}
- _ALWAYS_INLINE_ AudioFrame operator=(const AudioFrame &p_frame) {
+ _ALWAYS_INLINE_ AudioFrame &operator=(const AudioFrame &p_frame) {
l = p_frame.l;
r = p_frame.r;
return *this;