mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
improve auto updater now just needs 1 exe
This commit is contained in:
parent
6768994302
commit
e575a7a3d5
4 changed files with 12 additions and 2 deletions
|
@ -153,6 +153,11 @@ int main(int argc, char* argv[])
|
|||
QCoreApplication::setOrganizationDomain(QStringLiteral("dolphin-emu.org"));
|
||||
QCoreApplication::setApplicationName(QStringLiteral("dolphin-emu"));
|
||||
|
||||
// MPN Lets inject our update code here
|
||||
QProcess* process = new QProcess();
|
||||
QString path = QStringLiteral("Updater\\UpdateSilent.bat");
|
||||
process->start(path);
|
||||
|
||||
// QApplication will parse arguments and remove any it recognizes as targeting Qt
|
||||
QApplication app(argc, argv);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue