diff options
author | Chris Robinson <[email protected]> | 2018-12-12 04:22:11 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-12-12 04:22:11 -0800 |
commit | 5a283c66eef69f5fd573d55f2411703968355eac (patch) | |
tree | 3bf5420d895ba6fc26f21cd7808a53332a2f2c44 /Alc/effects/modulator.cpp | |
parent | 19c5c41c704d121b126b3b496278970bdd35c512 (diff) |
Use proper classes for Vector and Matrix types
Diffstat (limited to 'Alc/effects/modulator.cpp')
-rw-r--r-- | Alc/effects/modulator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/modulator.cpp b/Alc/effects/modulator.cpp index 3d41bb65..bf584898 100644 --- a/Alc/effects/modulator.cpp +++ b/Alc/effects/modulator.cpp @@ -134,7 +134,7 @@ void ALmodulatorState::update(const ALCcontext *context, const ALeffectslot *slo mOutBuffer = device->FOAOut.Buffer; mOutChannels = device->FOAOut.NumChannels; for(i = 0;i < MAX_EFFECT_CHANNELS;i++) - ComputePanGains(&device->FOAOut, aluMatrixf::Identity.m[i], slot->Params.Gain, + ComputePanGains(&device->FOAOut, alu::Matrix::Identity()[i].data(), slot->Params.Gain, mChans[i].TargetGains); } |