(ByteStringEncryptedStream): redunant conditional.

This commit is contained in:
morkt
2016-10-09 01:29:07 +04:00
parent a2c9e3f79b
commit 7f3d2dfdfb

View File

@@ -119,12 +119,9 @@ namespace GameRes.Formats
{ {
int start_pos = (int)((m_base_pos + BaseStream.Position) % m_key.Length); int start_pos = (int)((m_base_pos + BaseStream.Position) % m_key.Length);
int read = BaseStream.Read (buffer, offset, count); int read = BaseStream.Read (buffer, offset, count);
if (read > 0) for (int i = 0; i < read; ++i)
{ {
for (int i = 0; i < read; ++i) buffer[offset+i] ^= m_key[(start_pos + i) % m_key.Length];
{
buffer[offset+i] ^= m_key[(start_pos + i) % m_key.Length];
}
} }
return read; return read;
} }