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

@ -780,7 +780,7 @@ intptr_t CL_UISystemCalls( intptr_t *args ) {
return FS_FOpenFileByMode( VMA(1), VMA(2), args[3] );
case UI_FS_READ:
FS_Read2( VMA(1), args[2], args[3] );
FS_Read( VMA(1), args[2], args[3] );
return 0;
case UI_FS_WRITE: