Space in wrong place.

This commit is contained in:
JoelKatz
2012-05-07 19:08:11 -07:00
parent 2a8e0fc008
commit a8ded6d9d9

View File

@@ -213,7 +213,7 @@ SHAMapTreeNode::SHAMapTreeNode(const SHAMapNode& id, const std::vector<unsigned
int pos; int pos;
s.get8(pos, 32 + (i * 33)); s.get8(pos, 32 + (i * 33));
if ((pos < 0) || (pos >= 16)) throw SHAMapException(InvalidNode); if ((pos < 0) || (pos >= 16)) throw SHAMapException(InvalidNode);
s.get256(mHashes[pos], i* 3 3); s.get256(mHashes[pos], i * 33);
} }
mType = tnINNER; mType = tnINNER;
} }