mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-26 13:40:21 +00:00
SD installs less ugly
This commit is contained in:
parent
c1c864ea5a
commit
e4d530c296
1 changed files with 6 additions and 12 deletions
|
@ -111,12 +111,6 @@ namespace nspInstStuff {
|
||||||
if (ourTitleList[titleItr].extension() == ".xci" || ourTitleList[titleItr].extension() == ".xcz") {
|
if (ourTitleList[titleItr].extension() == ".xci" || ourTitleList[titleItr].extension() == ".xcz") {
|
||||||
auto localXCI = new tin::install::xci::LocalXCI(ourTitleList[titleItr]);
|
auto localXCI = new tin::install::xci::LocalXCI(ourTitleList[titleItr]);
|
||||||
installTask = new tin::install::xci::XCIInstallTask(m_destStorageId, inst::config::ignoreReqVers, localXCI);
|
installTask = new tin::install::xci::XCIInstallTask(m_destStorageId, inst::config::ignoreReqVers, localXCI);
|
||||||
|
|
||||||
inst::ui::setInstInfoText("Preparing installation...");
|
|
||||||
inst::ui::setInstBarPerc(0);
|
|
||||||
installTask->Prepare();
|
|
||||||
|
|
||||||
installTask->Begin();
|
|
||||||
} else {
|
} else {
|
||||||
if (ourTitleList[titleItr].extension() == ".nsz") {
|
if (ourTitleList[titleItr].extension() == ".nsz") {
|
||||||
oldNamesOfFiles.push_back(ourTitleList[titleItr]);
|
oldNamesOfFiles.push_back(ourTitleList[titleItr]);
|
||||||
|
@ -132,13 +126,13 @@ namespace nspInstStuff {
|
||||||
fileSystem.OpenFileSystemWithId(path, FsFileSystemType_ApplicationPackage, 0);
|
fileSystem.OpenFileSystemWithId(path, FsFileSystemType_ApplicationPackage, 0);
|
||||||
tin::install::nsp::SimpleFileSystem simpleFS(fileSystem, "/", path + "/");
|
tin::install::nsp::SimpleFileSystem simpleFS(fileSystem, "/", path + "/");
|
||||||
installTask = new tin::install::nsp::NSPInstallTask(simpleFS, m_destStorageId, inst::config::ignoreReqVers);
|
installTask = new tin::install::nsp::NSPInstallTask(simpleFS, m_destStorageId, inst::config::ignoreReqVers);
|
||||||
|
|
||||||
inst::ui::setInstInfoText("Preparing installation...");
|
|
||||||
inst::ui::setInstBarPerc(0);
|
|
||||||
installTask->Prepare();
|
|
||||||
|
|
||||||
installTask->Begin();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inst::ui::setInstInfoText("Preparing installation...");
|
||||||
|
inst::ui::setInstBarPerc(0);
|
||||||
|
installTask->Prepare();
|
||||||
|
|
||||||
|
installTask->Begin();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (std::exception& e)
|
catch (std::exception& e)
|
||||||
|
|
Loading…
Reference in a new issue