diff options
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r-- | Alc/hrtf.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -367,9 +367,9 @@ void GetBFormatHrtfCoeffs(const struct Hrtf *Hrtf, const ALuint num_chans, ALflo z = sinf(elev); ambi_coeffs[0] = 1.4142f; - ambi_coeffs[1] = x; /* X */ - ambi_coeffs[2] = y; /* Y */ - ambi_coeffs[3] = z; /* Z */ + ambi_coeffs[1] = y; /* Y */ + ambi_coeffs[2] = z; /* Z */ + ambi_coeffs[3] = x; /* X */ for(c = 0;c < num_chans;c++) { |