From a81e7bc3161d5b7a201d45874c0b9b78107d1ce3 Mon Sep 17 00:00:00 2001 From: Elizabeth Fong Date: Fri, 28 Jul 2006 07:37:24 +0000 Subject: [PATCH] some installations bundle background.png, so allow fudge factor --- src/java/com/threerings/getdown/launcher/Getdown.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/getdown/launcher/Getdown.java b/src/java/com/threerings/getdown/launcher/Getdown.java index 1e24ad7..d54cb29 100644 --- a/src/java/com/threerings/getdown/launcher/Getdown.java +++ b/src/java/com/threerings/getdown/launcher/Getdown.java @@ -511,7 +511,7 @@ public abstract class Getdown extends Thread // set of resources (a single patch file or the entire app from // scratch), then use a torrent downloader instead if (_app.getUseTorrent()) { - if (resources.equals(_app.getAllResources())) { + if (resources.size() >= _app.getAllResources().size() - 1) { ArrayList full = new ArrayList(); full.add(_app.getFullResource()); full.addAll(resources);