Skip to content

Commit 281f878

Browse files
committed
dotnet format
1 parent 7ae89c7 commit 281f878

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

game/addons/tools/Code/Widgets/SoundPlayer/SoundPlayer.Waveform.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public void Analyse()
101101
float fRange = maxVal - minVal;
102102

103103
int columns = MathX.FloorToInt( TimelineView.PositionFromTime( TimelineView.Duration ) / LineSize );
104-
SamplesPerColumn = Math.Max(1, sampleCount / columns);
104+
SamplesPerColumn = Math.Max( 1, sampleCount / columns );
105105

106106
for ( int i = 0; i < columns - 1; i++ )
107107
{

game/addons/tools/Code/Widgets/SoundPlayer/SoundPlayer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ protected void OnFrame()
7878
{
7979
Timeline.OnFrame();
8080
Time = Timeline.Time;
81-
81+
8282
PlayOption.Text = Playing ? "Pause" : "Play";
8383
PlayOption.Icon = Playing ? "pause" : "play_arrow";
8484

0 commit comments

Comments
 (0)