mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix updater not flushing
This commit is contained in:
parent
27f8abff15
commit
3c5a9258a7
|
@ -85,5 +85,7 @@ void AbstractUpdater::updateDownloaded(QNetworkReply* reply) {
|
||||||
}
|
}
|
||||||
f.write(bytes);
|
f.write(bytes);
|
||||||
}
|
}
|
||||||
|
f.flush();
|
||||||
|
f.close();
|
||||||
emit updateDone(true);
|
emit updateDone(true);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue