Merge pull request #575 from wheremyfoodat/hle-dsp

HLE DSP: Fix source resetting
This commit is contained in:
wheremyfoodat 2024-08-14 18:09:27 +00:00 committed by GitHub
commit 4a2491df81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View file

@ -40,7 +40,7 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Install bundle dependencies
run: brew install dylibbundler imagemagick
run: brew install --overwrite python@3.12 && brew install dylibbundler imagemagick
- name: Run bundle script
run: ./.github/mac-bundle.sh

View file

@ -67,7 +67,7 @@ jobs:
- name: Install bundle dependencies
run: |
brew install dylibbundler imagemagick
brew install --overwrite python@3.12 && brew install dylibbundler imagemagick
- name: Install qt
run: brew install qt && which macdeployqt

View file

@ -627,5 +627,6 @@ namespace Audio {
rateMultiplier = 1.f;
buffers = {};
currentSamples.clear();
}
} // namespace Audio