qt: use larger buffer for update install
This commit is contained in:
parent
6b898c6d69
commit
b1081329b9
1 changed files with 1 additions and 1 deletions
|
@ -3067,7 +3067,7 @@ InstallResult GMainWindow::InstallNSPXCI(const QString& filename) {
|
|||
return false;
|
||||
}
|
||||
|
||||
std::array<u8, 0x1000> buffer{};
|
||||
std::vector<u8> buffer(1_MiB);
|
||||
|
||||
for (std::size_t i = 0; i < src->GetSize(); i += buffer.size()) {
|
||||
if (install_progress->wasCanceled()) {
|
||||
|
|
Loading…
Reference in a new issue