summaryrefslogtreecommitdiff
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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/math/audio_frame.h b/core/math/audio_frame.h
index f970c510e0..ebe0356c93 100644
--- a/core/math/audio_frame.h
+++ b/core/math/audio_frame.h
@@ -122,6 +122,12 @@ struct AudioFrame {
r = p_frame.r;
}
+ _ALWAYS_INLINE_ AudioFrame operator=(const AudioFrame &p_frame) {
+ l = p_frame.l;
+ r = p_frame.r;
+ return *this;
+ }
+
_ALWAYS_INLINE_ AudioFrame() {}
};