Skip to content

Commit e73cd08

Browse files
committed
Rename buildInfo variable to currentBuild
Replaces the variable name 'buildInfo' with 'currentBuild' for clarity and consistency in the FFmpeg download step.
1 parent 5b7a6f1 commit e73cd08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MainForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,8 @@ private async Task InstallFFmpegAsync()
399399
progressBar.Value = 10;
400400

401401
// Step 2: Download FFmpeg
402-
var buildInfo = BuildInfos[selectedBuildType];
403-
UpdateStatus($"Downloading FFmpeg ({buildInfo.Name} build)...");
402+
var currentBuild = BuildInfos[selectedBuildType];
403+
UpdateStatus($"Downloading FFmpeg ({currentBuild.Name} build)...");
404404
await DownloadFFmpegAsync();
405405
progressBar.Value = 40;
406406

0 commit comments

Comments
 (0)