mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-21 12:11:07 +00:00
Don't try to extract libraries from gamepaks.
This commit is contained in:
parent
5adb4810d4
commit
5aa122978d
3 changed files with 3 additions and 3 deletions
|
@ -133,7 +133,7 @@ void idModelExport::LoadMayaDll( void ) {
|
|||
exporterDLLEntry_t dllEntry;
|
||||
char dllPath[ MAX_OSPATH ];
|
||||
|
||||
fileSystem->FindDLL( "MayaImport", dllPath, false );
|
||||
fileSystem->FindDLL( "MayaImport", dllPath );
|
||||
if ( !dllPath[ 0 ] ) {
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -250,7 +250,7 @@ public:
|
|||
// adds to the read count
|
||||
virtual void AddToReadCount( int c ) = 0;
|
||||
// look for a dynamic module
|
||||
virtual void FindDLL( const char *basename, char dllPath[ MAX_OSPATH ], bool updateChecksum ) = 0;
|
||||
virtual void FindDLL( const char *basename, char dllPath[ MAX_OSPATH ] ) = 0;
|
||||
// case sensitive filesystems use an internal directory cache
|
||||
// the cache is cleared when calling OpenFileWrite and RemoveFile
|
||||
// in some cases you may need to use this directly
|
||||
|
|
|
@ -133,7 +133,7 @@ void idModelExport::LoadMayaDll( void ) {
|
|||
exporterDLLEntry_t dllEntry;
|
||||
char dllPath[ MAX_OSPATH ];
|
||||
|
||||
fileSystem->FindDLL( "MayaImport", dllPath, false );
|
||||
fileSystem->FindDLL( "MayaImport", dllPath );
|
||||
if ( !dllPath[ 0 ] ) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue