Skip to content

Commit

Permalink
Merge pull request #6441 from spycrab/qt_exec
Browse files Browse the repository at this point in the history
Qt/Main: Add option to launch file without -e
  • Loading branch information
leoetlino committed Mar 16, 2018
2 parents bdaa7be + 0911b44 commit 917f0e2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/Core/DolphinQt2/Main.cpp
Expand Up @@ -104,6 +104,10 @@ int main(int argc, char* argv[])
QMessageBox::critical(nullptr, QObject::tr("Error"), QObject::tr("Invalid title ID."));
}
}
else if (!args.empty())
{
boot = BootParameters::GenerateFromFile(args.front());
}

int retval = 0;

Expand Down

0 comments on commit 917f0e2

Please sign in to comment.