replace real file system function with virtual wrapper call (#13717)

This commit is contained in:
Jamiras 2022-03-09 00:20:58 -07:00 committed by GitHub
parent 9ed51bc528
commit 4f62612044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,7 @@ static void* cdreader_open_bin_track(const char* path, uint32_t track)
size_t size;
rc_file_seek(cdrom->file_handle, 0, SEEK_END);
size = ftell(cdrom->file_handle);
size = rc_file_tell(cdrom->file_handle);
if ((size % 2352) == 0)
{