mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
Revert "git merge"
This reverts commit 80e1c3742a3ba7eb9aa1686a242b36f64331095a.
This commit is contained in:
@@ -197,7 +197,13 @@ namespace OpenSim.Framework
|
||||
{
|
||||
get { return m_textureEntry; }
|
||||
|
||||
set { m_textureEntry = value; }
|
||||
set
|
||||
{
|
||||
if (value == null)
|
||||
m_textureEntry = new byte[1];
|
||||
else
|
||||
m_textureEntry = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -838,6 +844,9 @@ namespace OpenSim.Framework
|
||||
|
||||
public void ReadInExtraParamsBytes(byte[] data)
|
||||
{
|
||||
if (data == null)
|
||||
return;
|
||||
|
||||
const ushort FlexiEP = 0x10;
|
||||
const ushort LightEP = 0x20;
|
||||
const ushort SculptEP = 0x30;
|
||||
|
||||
Reference in New Issue
Block a user