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
This commit is contained in:
Michael Bayne
2002-07-24 22:19:50 +00:00
parent 146014344e
commit be8b5ea243
@@ -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();