2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-01-28 06:28:06 +03:00

Netchan_CopyFileFragments: fix typo

This commit is contained in:
s1lentq 2024-12-12 04:35:38 +07:00
parent 4afb6e3be9
commit 1a68407710

View File

@ -1810,7 +1810,7 @@ qboolean Netchan_CopyFileFragments(netchan_t *chan)
// malformed data or compressed data exceeding sv_net_incoming_decompression_max_size // malformed data or compressed data exceeding sv_net_incoming_decompression_max_size
success = FALSE; success = FALSE;
} }
else if (!Netchan_ValidateDecompress(chan, FRAG_NORMAL_STREAM, compressedSize, uncompressedSize)) else if (!Netchan_ValidateDecompress(chan, FRAG_FILE_STREAM, compressedSize, uncompressedSize))
{ {
success = FALSE; success = FALSE;
} }