mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-28 16:39:43 +00:00
Fix file that's not used on Windows
This commit is contained in:
parent
bf24bb71b1
commit
7f1a6a8187
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ Wizard::InstallationPage::InstallationPage(QWidget* parent, Config::GameSettings
|
|||
mFinished = false;
|
||||
|
||||
mThread = std::make_unique<QThread>();
|
||||
mUnshield = std::make_unique<UnshieldWorker>(mGameSettings.value("morrowind-bsa-filesize").toLongLong());
|
||||
mUnshield = std::make_unique<UnshieldWorker>(mGameSettings.value("morrowind-bsa-filesize").value.toLongLong());
|
||||
mUnshield->moveToThread(mThread.get());
|
||||
|
||||
connect(mThread.get(), &QThread::started, mUnshield.get(), &UnshieldWorker::extract);
|
||||
|
|
Loading…
Reference in a new issue