A few things, now that I'm running again (I downgraded to the older beta).

I'm now pounding my head against new limitations that I'd not seen before, now
that the Client class that I'm using is not in the presents.client package.
Macromedia can go fuck themselves with a hot poker.
The .swf is already 200k and I've barely begun working on UI elements.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3972 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-24 02:28:26 +00:00
parent 70cb89d62d
commit 4a1fdbbbe8
6 changed files with 17 additions and 17 deletions
@@ -52,6 +52,10 @@ public class ObjectInputStream
var cname :String = Translations.getFromServer(readUTF());
Log.debug("read cname: " + cname);
var streamer :Streamer = Streamer.getStreamerByJavaName(cname);
if (streamer == Streamer.BAD_STREAMER) {
Log.warning("OMG, cannot stream" + cname);
return null;
}
cmap = new ClassMapping(code, cname, streamer);
_classMap[code] = cmap;