qt: use larger buffer for update install

This commit is contained in:
Liam 2023-06-11 11:43:04 -04:00
parent 6b898c6d69
commit b1081329b9
1 changed files with 1 additions and 1 deletions

View File

@ -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()) {