1
0
Fork 0
This commit is contained in:
cRTrn13 2009-10-19 07:15:34 +00:00
parent d9d3020a36
commit 3af8ccfdbc
2 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,7 @@ off_t bd_seek(BLURAY *bd, uint64_t pos)
if (pos < bd->s_size) {
bd->s_pos = pos - (pos % 6144);
file_seeko(bd->fp, bd->s_pos, SEEK_SET);
file_seek(bd->fp, bd->s_pos, SEEK_SET);
}
return bd->s_pos;

View File

@ -7,6 +7,7 @@
//#ifdef __LINUX__
#define file_open file_open_linux
#define _FILE_OFFSET_BITS 64
//#endif
#define file_close(X) X->close(X)