aboutsummaryrefslogtreecommitdiffstats
path: root/al/source.h
diff options
context:
space:
mode:
Diffstat (limited to 'al/source.h')
-rw-r--r--al/source.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/al/source.h b/al/source.h
index 40bd0846..4a6a2531 100644
--- a/al/source.h
+++ b/al/source.h
@@ -88,7 +88,7 @@ struct ALsource {
ALfloat GainLF;
ALfloat LFReference;
};
- al::vector<SendData> Send;
+ std::array<SendData,MAX_SENDS> Send;
/**
* Last user-specified offset, and the offset type (bytes, samples, or
@@ -117,7 +117,7 @@ struct ALsource {
ALuint id{0};
- ALsource(ALuint num_sends);
+ ALsource();
~ALsource();
ALsource(const ALsource&) = delete;