Reduce seek times to 100 when scanning MMC/SD cards.

This commit is contained in:
2020-12-10 13:57:33 +00:00
parent 4f0a582a23
commit d176244665

View File

@@ -164,7 +164,7 @@ namespace Aaru.Core.Devices.Scanning
results.SeekMax = double.MinValue;
results.SeekMin = double.MaxValue;
results.SeekTotal = 0;
const int SEEK_TIMES = 1000;
const int SEEK_TIMES = 100;
var rnd = new Random();