Fixed few typos.

Conflicts:

	src/game/Unit.cpp
This commit is contained in:
tomrus88 2010-04-05 13:16:03 +04:00
parent 0aed03b042
commit fec41482fd
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,8 @@ void BigNumber::SetQword(uint64 val)
void BigNumber::SetBinary(const uint8 *bytes, int len)
{
uint8 t[1000];
for (int i = 0; i < len; i++) t[i] = bytes[len - 1 - i];
for (int i = 0; i < len; i++)
t[i] = bytes[len - 1 - i];
BN_bin2bn(t, len, _bn);
}

View file

@ -31,7 +31,6 @@ class Sha1Hash
Sha1Hash();
~Sha1Hash();
void UpdateFinalizeBigNumbers(BigNumber *bn0, ...);
void UpdateBigNumbers(BigNumber *bn0, ...);
void UpdateData(const uint8 *dta, int len);