Add missing delete

This commit is contained in:
David Rowe 2020-06-18 10:23:22 +12:00
parent ab4ff1e7aa
commit aaf9abdaef

View file

@ -424,8 +424,15 @@ void showMinSpecWarning() {
__argv[i] = arguments[i].data();
}
#endif
QCoreApplication miniApp(__argc, __argv);
#ifdef Q_OS_LINUX
QObject::connect(&miniApp, &QCoreApplication::destroyed, [=] {
delete[] __argv;
});
#endif
vrSystem->ResetSeatedZeroPose();
QString imagePath = PathUtils::resourcesPath() + "/images/steam-min-spec-failed.png";
vrOverlay->SetOverlayFromFile(minSpecFailedOverlay, imagePath.toLocal8Bit().toStdString().c_str());