From d70df88a26c507a60e89e3ff69db5eb908ba5b2d Mon Sep 17 00:00:00 2001 From: SilasLaspada Date: Fri, 19 Apr 2019 11:15:46 -0600 Subject: [PATCH] Fix typo Fix one last "Avegare" to say "Average" --- DiscImageChef.Core/Devices/Dumping/PlayStationPortable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscImageChef.Core/Devices/Dumping/PlayStationPortable.cs b/DiscImageChef.Core/Devices/Dumping/PlayStationPortable.cs index bfaa8f513..8058134d1 100644 --- a/DiscImageChef.Core/Devices/Dumping/PlayStationPortable.cs +++ b/DiscImageChef.Core/Devices/Dumping/PlayStationPortable.cs @@ -1126,7 +1126,7 @@ namespace DiscImageChef.Core.Devices.Dumping (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, imageWriteDuration, (closeEnd - closeStart).TotalSeconds); - DicConsole.WriteLine("Avegare speed: {0:F3} MiB/sec.", + DicConsole.WriteLine("Average speed: {0:F3} MiB/sec.", (double)BLOCK_SIZE * (double)(blocks + 1) / 1048576 / (totalDuration / 1000)); DicConsole.WriteLine("Fastest speed burst: {0:F3} MiB/sec.", maxSpeed); DicConsole.WriteLine("Slowest speed burst: {0:F3} MiB/sec.", minSpeed);