diff options
-rw-r--r-- | Alc/panning.c | 4 | ||||
-rw-r--r-- | alsoftrc.sample | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Alc/panning.c b/Alc/panning.c index 0d83ea30..1d16188f 100644 --- a/Alc/panning.c +++ b/Alc/panning.c @@ -185,8 +185,8 @@ ALvoid aluInitPanning(ALCdevice *Device) Device->NumChan = 2; Speaker2Chan[0] = FRONT_LEFT; Speaker2Chan[1] = FRONT_RIGHT; - SpeakerAngle[0] = F_PI/180.0f * -90.0f; - SpeakerAngle[1] = F_PI/180.0f * 90.0f; + SpeakerAngle[0] = F_PI/180.0f * -30.0f; + SpeakerAngle[1] = F_PI/180.0f * 30.0f; SetSpeakerArrangement("layout_STEREO", SpeakerAngle, Speaker2Chan, Device->NumChan); break; diff --git a/alsoftrc.sample b/alsoftrc.sample index ca68b8be..6ee67058 100644 --- a/alsoftrc.sample +++ b/alsoftrc.sample @@ -144,7 +144,7 @@ # Channel-specific layouts may be specified to override the layout option. The # same speakers as the layout option are available, and the default settings # are shown below. -#layout_STEREO = fl=-90, fr=90 +#layout_STEREO = fl=-30, fr=30 #layout_QUAD = fl=-45, fr=45, bl=-135, br=135 #layout_51CHN = fl=-30, fr=30, fc=0, bl=-110, br=110 #layout_61CHN = fl=-30, fr=30, fc=0, sl=-90, sr=90, bc=180 |