Missed one 64 bit to 32 bit conversion.

This commit is contained in:
Steve Checkoway
2008-11-24 07:55:11 +00:00
parent dacca25190
commit c13b0bcb4a
+1 -1
View File
@@ -203,7 +203,7 @@ RageFileObjDirect *RageFileObjDirect::Copy() const
if( ret == NULL )
RageException::Throw( "Couldn't reopen \"%s\": %s", m_sPath.c_str(), strerror(iErr) );
ret->Seek( lseek( m_iFD, 0, SEEK_CUR ) );
ret->Seek( (int)lseek( m_iFD, 0, SEEK_CUR ) );
return ret;
}