diff options
| author | Tannin <devnull@localhost> | 2014-03-13 21:57:11 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-03-13 21:57:11 +0100 |
| commit | 129b76d7d2d90c3a791e101435987993ed8b312a (patch) | |
| tree | 90404dafd80525bc0d576179d885f5cf2f42d048 /src | |
| parent | a82b7e99495a2a351a1e4a95381ca29225eb8424 (diff) | |
- unpacking bsas during installation no longer overwrites loose files (since the loose files
would have taken precedence)
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index a39a497e..a0af63bd 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -3289,7 +3289,8 @@ void MainWindow::testExtractBSA(int modIndex) progress.show(); archive.extractAll(modInfo->absolutePath().toLocal8Bit().constData(), - boost::bind(&MainWindow::extractProgress, this, boost::ref(progress), _1, _2)); + boost::bind(&MainWindow::extractProgress, this, boost::ref(progress), _1, _2), + false); if (result == BSA::ERROR_INVALIDHASHES) { reportError(tr("This archive contains invalid hashes. Some files may be broken.")); |
