mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix showing speed set when set to max.
This commit is contained in:
@@ -1543,8 +1543,8 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
// Set speed
|
||||
if(_speedMultiplier >= 0)
|
||||
{
|
||||
_dumpLog.WriteLine($"Setting speed to {_speed}x.");
|
||||
UpdateStatus?.Invoke($"Setting speed to {_speed}x.");
|
||||
_dumpLog.WriteLine($"Setting speed to {(_speed == 0 ? "MAX" : $"{_speed}x")}.");
|
||||
UpdateStatus?.Invoke($"Setting speed to {(_speed == 0 ? "MAX" : $"{_speed}x")}.");
|
||||
|
||||
_speed *= _speedMultiplier;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user