From 24b6d1fcec498bc2751af158e219b0238ae62d43 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 12 Feb 2003 18:11:33 +0000 Subject: [PATCH] Activate our bundles before turning our download observers loose. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2277 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/resource/ResourceManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/resource/ResourceManager.java b/src/java/com/threerings/resource/ResourceManager.java index 192579174..fb4086fac 100644 --- a/src/java/com/threerings/resource/ResourceManager.java +++ b/src/java/com/threerings/resource/ResourceManager.java @@ -1,5 +1,5 @@ // -// $Id: ResourceManager.java,v 1.22 2003/02/06 19:13:49 mdb Exp $ +// $Id: ResourceManager.java,v 1.23 2003/02/12 18:11:33 mdb Exp $ package com.threerings.resource; @@ -246,11 +246,11 @@ public class ResourceManager public void downloadProgress (int percent, long remaining) { if (percent == 100) { + bundlesDownloaded(); synchronized (lock) { // wake things up as the download is finished lock.notify(); } - bundlesDownloaded(); } }