remove deprecated RageFileDriverZip ctor
This commit is contained in:
@@ -36,16 +36,6 @@ RageFileDriverZip::RageFileDriverZip( RString sPath ):
|
|||||||
Load( sPath );
|
Load( sPath );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* deprecated */
|
|
||||||
RageFileDriverZip::RageFileDriverZip( RageFileBasic *pFile ):
|
|
||||||
RageFileDriver( new NullFilenameDB ),
|
|
||||||
m_Mutex( "RageFileDriverZip" )
|
|
||||||
{
|
|
||||||
m_bFileOwned = false;
|
|
||||||
m_pZip = NULL;
|
|
||||||
Load( pFile );
|
|
||||||
}
|
|
||||||
|
|
||||||
bool RageFileDriverZip::Load( const RString &sPath )
|
bool RageFileDriverZip::Load( const RString &sPath )
|
||||||
{
|
{
|
||||||
ASSERT( m_pZip == NULL ); /* don't load twice */
|
ASSERT( m_pZip == NULL ); /* don't load twice */
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ class RageFileDriverZip: public RageFileDriver
|
|||||||
public:
|
public:
|
||||||
RageFileDriverZip();
|
RageFileDriverZip();
|
||||||
RageFileDriverZip( RString sPath );
|
RageFileDriverZip( RString sPath );
|
||||||
RageFileDriverZip( RageFileBasic *pFile );
|
|
||||||
bool Load( const RString &sPath );
|
bool Load( const RString &sPath );
|
||||||
bool Load( RageFileBasic *pFile );
|
bool Load( RageFileBasic *pFile );
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user