mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 03:22:44 +02:00
Add missing delete
This commit is contained in:
parent
ab4ff1e7aa
commit
aaf9abdaef
1 changed files with 7 additions and 0 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue