瀏覽代碼

let's not forget this

rdb 14 年之前
父節點
當前提交
28f1fd83ca
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      panda/src/movies/ffmpegVirtualFile.cxx

+ 2 - 2
panda/src/movies/ffmpegVirtualFile.cxx

@@ -107,8 +107,8 @@ pandavfs_write(URLContext *h, const unsigned char *buf, int size) {
 //       Access: Static Function
 //  Description: A hook to seek a panda VFS file.
 ////////////////////////////////////////////////////////////////////
-static PN_int64
-pandavfs_seek(URLContext *h, PN_int64 pos, int whence) {
+static int64_t
+pandavfs_seek(URLContext *h, int64_t pos, int whence) {
   istream *s = (istream*)(h->priv_data);
   switch(whence) {
   case SEEK_SET: s->seekg(pos, ios::beg); break;