The image manager now falls back to loading images via the Toolkit if it

can't load the ImageIO classes. This unfortunately means that we're back
to passing a Component instance to the ImageManager at construct time.
Whee!


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@749 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-12-07 01:33:29 +00:00
parent 14b9708e9e
commit 940154d7e3
17 changed files with 241 additions and 56 deletions
@@ -1,5 +1,5 @@
//
// $Id: TileSet.java,v 1.22 2001/11/27 08:40:34 mdb Exp $
// $Id: TileSet.java,v 1.23 2001/12/07 01:33:29 mdb Exp $
package com.threerings.media.tile;
@@ -227,7 +227,7 @@ public abstract class TileSet
* @return the tileset image or null if an error occurred loading the
* image.
*/
protected BufferedImage getTilesetImage ()
protected Image getTilesetImage ()
{
// return it straight away if it's already loaded
if (_tilesetImg != null) {
@@ -281,5 +281,5 @@ public abstract class TileSet
/** The image containing all tile images for this set. This is private
* because it should be accessed via {@link #getTilesetImage} even by
* derived classes. */
private transient BufferedImage _tilesetImg;
private transient Image _tilesetImg;
}