From be8b5ea2436d6ae3a3ec1dd80e514e1e97d7bab6 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 24 Jul 2002 22:19:50 +0000 Subject: [PATCH] Make the default orientation SOUTHWEST since that's orientation zero and if we have no other orientations then to request anything but orientation zero causes things to freak out. (This will be fixed but it's going to require a fair bit of work that I don't have time to do right now.) git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1613 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/cast/CharacterSprite.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/cast/CharacterSprite.java b/src/java/com/threerings/cast/CharacterSprite.java index c6b02b136..b98d44f71 100644 --- a/src/java/com/threerings/cast/CharacterSprite.java +++ b/src/java/com/threerings/cast/CharacterSprite.java @@ -1,5 +1,5 @@ // -// $Id: CharacterSprite.java,v 1.35 2002/06/20 21:42:53 mdb Exp $ +// $Id: CharacterSprite.java,v 1.36 2002/07/24 22:19:50 mdb Exp $ package com.threerings.cast; @@ -27,7 +27,7 @@ public class CharacterSprite extends ImageSprite _charmgr = charmgr; // assign an arbitrary starting orientation - _orient = NORTH; + _orient = SOUTHWEST; // pass the buck to derived classes didInit();