[libsecondlife]

* Fixed a bug causing negative PathShears to be read incorrectly
[libprimrender]
* More rendering bugfixes, coupled with the PathShear fix prims should be rendering identical to the SL viewer now

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1618 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-01-12 02:06:33 +00:00
parent 05d660e3e4
commit bb09afe4ed
2 changed files with 5 additions and 5 deletions

View File

@@ -520,7 +520,7 @@ namespace libsecondlife
return (float)(200 - pathScale) * SCALE_QUANTA;
}
public static float UnpackPathShear(byte pathShear)
public static float UnpackPathShear(sbyte pathShear)
{
return (float)pathShear * SHEAR_QUANTA;
}