2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

Add additional empty check for the QStringList returned by the InstallDialog

This commit is contained in:
Morph 2020-07-08 13:01:25 -04:00
parent 6d8d7ebc66
commit 75a01475d1

View file

@ -1621,6 +1621,10 @@ void GMainWindow::OnMenuInstallToNAND() {
const QStringList files = installDialog.GetFiles();
if (files.isEmpty()) {
return;
}
int remaining = filenames.size();
// This would only overflow above 2^43 bytes (8.796 TB)