diff --git a/gen_pitch_table.py b/gen_pitch_table.py index 4985c5b..e38be21 100644 --- a/gen_pitch_table.py +++ b/gen_pitch_table.py @@ -49,8 +49,6 @@ print("constexpr unsigned long midi_pitch_period[" + str(end_pitch - start_pitch for i in range(start_pitch, end_pitch): period = int(2.0 * pitch_to_period_micros(i)) name = pitch_to_name(i) - if name == "D3" or name == "D#3" or name == "E3": - period = int(period / 2) print(" " + str(period) + "ul,\t// " + name) print("};")