diff options
author | UbitUmarov | 2017-01-14 16:33:51 +0000 |
---|---|---|
committer | UbitUmarov | 2017-01-14 16:33:51 +0000 |
commit | 1ff831c45b292840e572b74153986218a590e739 (patch) | |
tree | bd9ca2e74af84b824b4fd50a4a8f23ba5db1b7ec | |
parent | fix incoerent definition of Slam bit (bits 3 and 4 used in diferent (diff) | |
download | opensim-SC-1ff831c45b292840e572b74153986218a590e739.zip opensim-SC-1ff831c45b292840e572b74153986218a590e739.tar.gz opensim-SC-1ff831c45b292840e572b74153986218a590e739.tar.bz2 opensim-SC-1ff831c45b292840e572b74153986218a590e739.tar.xz |
make the Slam bit actually be the two previus used ones, to try to minimize compatibilty issues
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Util.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 2ede363..746814d 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -66,8 +66,8 @@ namespace OpenSim.Framework | |||
66 | FoldedTransfer = 1, | 66 | FoldedTransfer = 1, |
67 | FoldedModify = 1 << 1, | 67 | FoldedModify = 1 << 1, |
68 | FoldedCopy = 1 << 2, | 68 | FoldedCopy = 1 << 2, |
69 | FoldedExport = 1 << 3, | 69 | Slam = (1 << 3) | (1 << 4), |
70 | Slam = 1 << 4, | 70 | FoldedExport = 1 << 5, |
71 | 71 | ||
72 | FoldedMask = 0x0f, | 72 | FoldedMask = 0x0f, |
73 | 73 | ||