1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-15 12:24:39 +00:00

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
This commit is contained in:
engineer124 2021-11-13 02:52:17 +11:00 committed by GitHub
parent 0b18419489
commit 80edcc3801
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 706 additions and 141 deletions

View file

@ -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;
}