mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-07 10:02:24 +02:00
Corrected Linux compilation error.
This commit is contained in:
parent
f4f1ac8f02
commit
48fabf51f2
1 changed files with 2 additions and 3 deletions
|
@ -332,12 +332,11 @@ void TestRunner::verifyInstallationSucceeded() {
|
|||
}
|
||||
|
||||
void TestRunner::saveExistingHighFidelityAppDataFolder() {
|
||||
#ifdef Q_OS_WIN
|
||||
QString dataDirectory{ "NOT FOUND" };
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
dataDirectory = qgetenv("USERPROFILE") + "\\AppData\\Roaming";
|
||||
#elif defined Q_OS_MAC
|
||||
QString dataDirectory{ QDir::homePath() + "/Library/Application Support" };
|
||||
dataDirectory{ QDir::homePath() + "/Library/Application Support" };
|
||||
#endif
|
||||
if (_runLatest->isChecked()) {
|
||||
_appDataFolder = dataDirectory + "/High Fidelity";
|
||||
|
|
Loading…
Reference in a new issue