Removed an unecessary comment

This commit is contained in:
2025-07-27 13:42:32 +02:00
parent 778f43e597
commit 7bf53cfb95

View File

@@ -58,7 +58,6 @@ public partial class AudioFileAnalyzer : Node
long sampleCount = reader.Length / reader.WaveFormat.BlockAlign; long sampleCount = reader.Length / reader.WaveFormat.BlockAlign;
waveformInfo.Samples = new float[sampleCount]; waveformInfo.Samples = new float[sampleCount];
// Render the waveform
byte[] buffer = new byte[reader.WaveFormat.BlockAlign]; byte[] buffer = new byte[reader.WaveFormat.BlockAlign];
for (int i = 0; i < sampleCount; i++) for (int i = 0; i < sampleCount; i++)
{ {