From 2cbed37cac849138312b3f6e5effbf2b4e9c470f Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 15 Aug 2001 01:10:09 +0000 Subject: [PATCH] Whirled Scene ids are ints. Need to bust the upgrade from shorts. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@250 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/miso/client/DisplayMisoSceneImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/threerings/miso/client/DisplayMisoSceneImpl.java b/src/java/com/threerings/miso/client/DisplayMisoSceneImpl.java index 92eb0fd97..e438f86c2 100644 --- a/src/java/com/threerings/miso/client/DisplayMisoSceneImpl.java +++ b/src/java/com/threerings/miso/client/DisplayMisoSceneImpl.java @@ -1,5 +1,5 @@ // -// $Id: DisplayMisoSceneImpl.java,v 1.28 2001/08/15 01:08:49 mdb Exp $ +// $Id: DisplayMisoSceneImpl.java,v 1.29 2001/08/15 01:10:09 mdb Exp $ package com.threerings.miso.scene; @@ -48,7 +48,7 @@ public class MisoScene implements Scene public static final String[] XLATE_LAYERS = { "Base", "Fringe", "Object" }; /** Scene id to denote an unset or otherwise invalid scene id. */ - public static final short SID_INVALID = -1; + public static final int SID_INVALID = -1; /** The tiles comprising the scene. */ public Tile tiles[][][]; @@ -317,7 +317,7 @@ public class MisoScene implements Scene protected String _name; /** The unique scene id. */ - protected short _sid; + protected int _sid; /** The locations within the scene. */ protected ArrayList _locations;