mirror of
https://github.com/martravi/wiiqt.git
synced 2024-11-22 09:09:18 +01:00
* fix bug in nandBin class that added the "/" root item to the path being extracted to
This commit is contained in:
parent
b684889045
commit
598a3aa49e
@ -160,11 +160,15 @@ bool NandBin::ExtractDir( fst_t fst, QString parent )
|
||||
QByteArray ba( (char*)fst.filename, 0xc );
|
||||
QString filename( ba );
|
||||
|
||||
QFileInfo fi( parent + "/" + filename );
|
||||
if( filename != "/" && !fi.exists() && !QDir().mkpath( fi.absoluteFilePath() ) )
|
||||
QFileInfo fi( parent );
|
||||
if( filename != "/" )
|
||||
{
|
||||
emit SendError( tr( "Can\'t create directory \"%1\"" ).arg( fi.absoluteFilePath() ) );
|
||||
return false;
|
||||
fi.setFile( parent + "/" + filename );
|
||||
if( !fi.exists() && !QDir().mkpath( fi.absoluteFilePath() ) )
|
||||
{
|
||||
emit SendError( tr( "Can\'t create directory \"%1\"" ).arg( fi.absoluteFilePath() ) );
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if( fst.sub != 0xffff && !ExtractFST( fst.sub, fi.absoluteFilePath() ) )
|
||||
|
Loading…
Reference in New Issue
Block a user