diff options
author | Chris Robinson <[email protected]> | 2012-02-09 23:59:24 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-02-09 23:59:24 -0800 |
commit | 23bda38be06f87aa58f504012a36bf537d52d342 (patch) | |
tree | 09e23b411d35863be42f1afe10d1345bb2a97b22 /Alc | |
parent | e6a0dd10a94c75517e745be7f91b43347db09d46 (diff) |
Match the 7.1 channel angles with the speakers
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALu.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -100,10 +100,10 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext) { FRONT_RIGHT, 30.0f * F_PI/180.0f }, { FRONT_CENTER, 0.0f * F_PI/180.0f }, { LFE, 0.0f }, - { BACK_LEFT, -110.0f * F_PI/180.0f }, - { BACK_RIGHT, 110.0f * F_PI/180.0f }, - { SIDE_LEFT, -90.0f * F_PI/180.0f }, - { SIDE_RIGHT, 90.0f * F_PI/180.0f } + { BACK_LEFT, -150.0f * F_PI/180.0f }, + { BACK_RIGHT, 150.0f * F_PI/180.0f }, + { SIDE_LEFT, -90.0f * F_PI/180.0f }, + { SIDE_RIGHT, 90.0f * F_PI/180.0f } }; ALCdevice *Device = ALContext->Device; |