diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2021-11-13 02:52:17 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-12 10:52:17 -0500 |
| commit | 80edcc3801723348c4c4350dfe8194a6274e5357 (patch) | |
| tree | f1ca7e76c80e4aaac36ed6327056388e2030629a /src/code/audio_effects.c | |
| parent | 0b1841948932937d421daacc6d422a450396a8c8 (diff) | |
Import Audio Synthesis Data (#1010)
* Import audio synth data, OK
* Cleanup data
* Merge data into 1 file
* naming
* format
* Fix data
* Separate audio_data into it's own file
* CleanUp, more PR suggestions
* Fix audio_effects.data.s
* Format audio_data
* rm asm, always gets me
Diffstat (limited to 'src/code/audio_effects.c')
| -rw-r--r-- | src/code/audio_effects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/audio_effects.c b/src/code/audio_effects.c index 091a37780..04aa5e006 100644 --- a/src/code/audio_effects.c +++ b/src/code/audio_effects.c @@ -93,7 +93,7 @@ f32 Audio_GetPortamentoFreqScale(Portamento* p) { p->mode = 0; } - result = 1.0f + p->extent * (gPitchBendFrequencyScale[loResCur + 128] - 1.0f); + result = 1.0f + p->extent * (gBendPitchOneOctaveFrequencies[loResCur + 128] - 1.0f); return result; } |
