diff --git a/src/ch/blinkenlights/android/vanilla/CoverCache.java b/src/ch/blinkenlights/android/vanilla/CoverCache.java index 1d94547f..9fec24c1 100644 --- a/src/ch/blinkenlights/android/vanilla/CoverCache.java +++ b/src/ch/blinkenlights/android/vanilla/CoverCache.java @@ -419,8 +419,8 @@ public class CoverCache { break; } } - // Stop loop if we found the best match or if we looped 50 times - if (loopCount++ > 50 || bestMatchIndex == 0) + // Stop loop if we found the best match or if we looped 150 times + if (loopCount++ > 150 || bestMatchIndex == 0) break; } }