mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix a compile warning
git-svn-id: https://svn.eduke32.com/eduke32@4608 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
598876e411
commit
bd26dd5612
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ void PITCH_Init(void)
|
||||||
for (detune = 0; detune < MAXDETUNE; detune++)
|
for (detune = 0; detune < MAXDETUNE; detune++)
|
||||||
{
|
{
|
||||||
PitchTable[ note ][ detune ] = 0x10000 *
|
PitchTable[ note ][ detune ] = 0x10000 *
|
||||||
pow(2, (note * MAXDETUNE + detune) / (12.0 * MAXDETUNE));
|
(uint32_t)pow(2, (note * MAXDETUNE + detune) / (12.0 * MAXDETUNE));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue