-
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #575 from wheremyfoodat/hle-dsp
HLE DSP: Fix source resetting
- Loading branch information
Showing
3 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -627,5 +627,6 @@ namespace Audio { | |
rateMultiplier = 1.f; | ||
|
||
buffers = {}; | ||
currentSamples.clear(); | ||
} | ||
} // namespace Audio |