From f8b340de0289c630147f59135eb9a0f461137a52 Mon Sep 17 00:00:00 2001 From: terminx Date: Tue, 30 Sep 2014 04:09:03 +0000 Subject: [PATCH] Next time I'll test with sound enabled when attempting to fix a warning in audiolib ;) git-svn-id: https://svn.eduke32.com/eduke32@4616 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/jaudiolib/src/pitch.c | 21 ++++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/polymer/eduke32/source/jaudiolib/src/pitch.c b/polymer/eduke32/source/jaudiolib/src/pitch.c index 7a14b31cc..278b2f84b 100644 --- a/polymer/eduke32/source/jaudiolib/src/pitch.c +++ b/polymer/eduke32/source/jaudiolib/src/pitch.c @@ -50,19 +50,18 @@ void PITCH_Init(void) int32_t note; int32_t detune; - if (!PITCH_Installed) - { - for (note = 0; note < 12; note++) - { - for (detune = 0; detune < MAXDETUNE; detune++) - { - PitchTable[ note ][ detune ] = 0x10000 * - (uint32_t)pow(2, (note * MAXDETUNE + detune) / (12.0 * MAXDETUNE)); - } - } + if (PITCH_Installed) + return; - PITCH_Installed = 1; + for (note = 0; note < 12; note++) + { + for (detune = 0; detune < MAXDETUNE; detune++) + { + PitchTable[note][detune] = (uint32_t) (65535.f * powf(2.f, (note * MAXDETUNE + detune) / (12.f * MAXDETUNE))); + } } + + PITCH_Installed = 1; }