Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
davemollen committed Aug 4, 2024
1 parent 6145e7e commit 78b0e02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
key: ${{ matrix.name }}-${{ matrix.cross-target }}

- uses: actions/cache@v4
if: "!startsWith(matrix.os, 'windows')"
if: startsWith(matrix.os, 'windows') != true
with:
path: |
~/nih-plug/.cargo/registry/index/
Expand Down
2 changes: 1 addition & 1 deletion rat/src/shared/float_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl FloatExt for f32 {
}

fn mix(self, right: f32, factor: f32) -> Self {
self * (1. - factor) + right * factor
self + (right - self) * factor
}

/// This is an atan approximation
Expand Down

0 comments on commit 78b0e02

Please sign in to comment.