Reduced dreamcast detection time by a factor of 10

This commit is contained in:
Asnivor 2017-10-11 11:20:46 +01:00
parent 420aec7870
commit 688015bde8
1 changed files with 1 additions and 1 deletions

View File

@ -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 //asni - slightly longer running than the others due to its brute-force nature. Should run later in the method
bool DetectDreamcast() bool DetectDreamcast()
{ {
for (int i = 0; i < 10000; i++) for (int i = 0; i < 1000; i++)
{ {
if (SectorContains("segakatana", i)) if (SectorContains("segakatana", i))
return true; return true;