diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Util.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 0ec24e6..4d025a9 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -79,7 +79,9 @@ namespace OpenSim.Framework | |||
79 | 79 | ||
80 | FoldedMask = 0x0f, | 80 | FoldedMask = 0x0f, |
81 | 81 | ||
82 | // | 82 | FoldingShift = 13 , // number of bit shifts from normal perm to folded or back (same as Transfer shift below) |
83 | // when doing as a block | ||
84 | |||
83 | Transfer = 1 << 13, // 0x02000 | 85 | Transfer = 1 << 13, // 0x02000 |
84 | Modify = 1 << 14, // 0x04000 | 86 | Modify = 1 << 14, // 0x04000 |
85 | Copy = 1 << 15, // 0x08000 | 87 | Copy = 1 << 15, // 0x08000 |
@@ -91,6 +93,7 @@ namespace OpenSim.Framework | |||
91 | All = 0x8e000, | 93 | All = 0x8e000, |
92 | AllAndExport = 0x9e000, | 94 | AllAndExport = 0x9e000, |
93 | AllEffective = 0x9e000 | 95 | AllEffective = 0x9e000 |
96 | |||
94 | } | 97 | } |
95 | 98 | ||
96 | /// <summary> | 99 | /// <summary> |