소스 검색

audio: Disable OpenAL hrtf by default, fixes macOS init crash

rdb 3 주 전
부모
커밋
3c852c8d72
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      .github/workflows/ci.yml
  2. 1 1
      panda/src/audio/config_audio.cxx

+ 1 - 1
.github/workflows/ci.yml

@@ -396,7 +396,7 @@ jobs:
         tar -xf panda3d-1.10.16-tools-mac.tar.gz
         mv panda3d-1.10.16/thirdparty thirdparty
         rmdir panda3d-1.10.16
-        (cd thirdparty/darwin-libs-a && rm -rf rocket openal)
+        (cd thirdparty/darwin-libs-a && rm -rf rocket)
 
     - name: Set up XCode (macOS)
       if: runner.os == 'macOS'

+ 1 - 1
panda/src/audio/config_audio.cxx

@@ -76,7 +76,7 @@ ConfigVariableInt audio_preload_threshold
           "time - the hard drive seek time makes it stutter."));
 
 ConfigVariableBool audio_want_hrtf
-("audio-want-hrtf", true,
+("audio-want-hrtf", false,
  PRC_DESC("This determines whether OpenAL-Soft should activate HRTF in "
           "certain hardware configurations. Set it to true to cause "
           "OpenAL to automatically apply HRTF processing to all output "