ソースを参照

Merge pull request #156 from billpugh/master

Bug fix so that downward tone sweeps will work.
dds
Paul Stoffregen 9年前
コミット
66497d2c8d
1個のファイルの変更5行の追加4行の削除
  1. +5
    -4
      synth_tonesweep.cpp

+ 5
- 4
synth_tonesweep.cpp ファイルの表示

@@ -61,12 +61,13 @@ if(0) {

tone_amp = t_amp * 32767.0;

tone_tmp = tone_hi - tone_lo;
tone_sign = 1;
tone_freq = tone_lo*0x100000000LL;
if(tone_tmp < 0) {
if (tone_hi >= tone_lo) {
tone_tmp = tone_hi - tone_lo;
tone_sign = 1;
} else {
tone_sign = -1;
tone_tmp = -tone_tmp;
tone_tmp = tone_lo - tone_hi;
}
tone_tmp = tone_tmp/t_time/44100.;
tone_incr = (tone_tmp * 0x100000000LL);

読み込み中…
キャンセル
保存