From f8dbde009664ba9ad5075e1ea8e96bc30498d21c Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 8 Mar 2002 09:35:14 +0000 Subject: [PATCH] Use loadImage() rather than createImage() because we want the raw (indexed color) image rather than one prepped for display. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1105 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/cast/bundle/BundledComponentRepository.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/cast/bundle/BundledComponentRepository.java b/src/java/com/threerings/cast/bundle/BundledComponentRepository.java index 8fb22bda2..f07d2cc77 100644 --- a/src/java/com/threerings/cast/bundle/BundledComponentRepository.java +++ b/src/java/com/threerings/cast/bundle/BundledComponentRepository.java @@ -1,5 +1,5 @@ // -// $Id: BundledComponentRepository.java,v 1.7 2002/02/19 22:09:50 mdb Exp $ +// $Id: BundledComponentRepository.java,v 1.8 2002/03/08 09:35:14 mdb Exp $ package com.threerings.cast.bundle; @@ -244,7 +244,7 @@ public class BundledComponentRepository "[bundle=" + _bundle + ", path=" + path + "]."; throw new FileNotFoundException(errmsg); } - return _imgr.createImage(imgin); + return _imgr.loadImage(imgin); } // documentation inherited