瀏覽代碼

Alternative fix without signed overflow issues

dds
user 4 年之前
父節點
當前提交
abeaf94520
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      synth_waveform.cpp

+ 1
- 1
synth_waveform.cpp 查看文件

@@ -243,7 +243,7 @@ void AudioSynthWaveformModulated::update(void)
bp = moddata->data;
for (i=0; i < AUDIO_BLOCK_SAMPLES; i++) {
// more than +/- 180 deg shift by 32 bit overflow of "n"
uint32_t n = (*bp++) * modulation_factor;
uint32_t n = ((uint32_t)(*bp++)) * modulation_factor;
phasedata[i] = ph + n;
ph += inc;
}

Loading…
取消
儲存