Remove FS_Read2().

Functionally the same as FS_Read().
Streaming functionality was removed in 672cfbf16f but flag remained.
This commit is contained in:
SmileTheory 2017-03-17 04:21:11 -07:00
parent b173ac0599
commit d4e1a01f33
7 changed files with 5 additions and 39 deletions

View file

@ -290,7 +290,7 @@ char *Com_MD5File( const char *fn, int length, const char *prefix, int prefix_le
MD5Update(&md5 , (unsigned char *)prefix, prefix_len);
for(;;) {
r = FS_Read2(buffer, sizeof(buffer), f);
r = FS_Read(buffer, sizeof(buffer), f);
if(r < 1)
break;
if(r + total > length)