fix typo in hex constant

This commit is contained in:
Günther Kelleter 2006-09-14 15:34:12 +00:00
parent 70914a8e6f
commit 15f0d65a7f
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ dsp_audio_generate_s2law_table(void)
}
j = 255;
while(i < 65536) {
if (i-0x32768 > dsp_audio_law_to_s32[j])
if (i-32768 > dsp_audio_law_to_s32[j])
j--;
dsp_audio_s16_to_law[(i-32768) & 0xffff] = j;
i++;