From 688015bde8a409b3d37112f3c4d54281f97aac34 Mon Sep 17 00:00:00 2001 From: Asnivor Date: Wed, 11 Oct 2017 11:20:46 +0100 Subject: [PATCH] Reduced dreamcast detection time by a factor of 10 --- BizHawk.Emulation.DiscSystem/DiscIdentifier.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.DiscSystem/DiscIdentifier.cs b/BizHawk.Emulation.DiscSystem/DiscIdentifier.cs index 7db33ef622..e4fe3c2f74 100644 --- a/BizHawk.Emulation.DiscSystem/DiscIdentifier.cs +++ b/BizHawk.Emulation.DiscSystem/DiscIdentifier.cs @@ -298,7 +298,7 @@ namespace BizHawk.Emulation.DiscSystem //asni - slightly longer running than the others due to its brute-force nature. Should run later in the method bool DetectDreamcast() { - for (int i = 0; i < 10000; i++) + for (int i = 0; i < 1000; i++) { if (SectorContains("segakatana", i)) return true;