Skip to content

Commit

Permalink
Merge pull request #575 from wheremyfoodat/hle-dsp
Browse files Browse the repository at this point in the history
HLE DSP: Fix source resetting
  • Loading branch information
wheremyfoodat authored Aug 14, 2024
2 parents 860eacc + 17b9699 commit 4a2491d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/MacOS_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected] && brew install dylibbundler imagemagick

- name: Run bundle script
run: ./.github/mac-bundle.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Qt_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Install bundle dependencies
run: |
brew install dylibbundler imagemagick
brew install --overwrite [email protected] && brew install dylibbundler imagemagick
- name: Install qt
run: brew install qt && which macdeployqt
Expand Down
1 change: 1 addition & 0 deletions src/core/audio/hle_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -627,5 +627,6 @@ namespace Audio {
rateMultiplier = 1.f;

buffers = {};
currentSamples.clear();
}
} // namespace Audio

0 comments on commit 4a2491d

Please sign in to comment.