mirror of
https://github.com/redstrate/Astra.git
synced 2025-05-18 07:07:45 +00:00
Fix old Windows define not working
This commit is contained in:
parent
71107f9aae
commit
3ed199d388
1 changed files with 3 additions and 3 deletions
|
@ -67,13 +67,13 @@ void ProfileManager::deleteProfile(Profile *profile)
|
|||
QString ProfileManager::getDefaultGamePath(const QString &uuid)
|
||||
{
|
||||
#if defined(Q_OS_WIN)
|
||||
return "C:\\Program Files (x86)\\SquareEnix\\FINAL FANTASY XIV - A Realm Reborn";
|
||||
return QStringLiteral("C:\\Program Files (x86)\\SquareEnix\\FINAL FANTASY XIV - A Realm Reborn");
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_MAC)
|
||||
return QDir::homePath() +
|
||||
"/Library/Application Support/FINAL FANTASY XIV ONLINE/Bottles/published_Final_Fantasy/drive_c/Program "
|
||||
"Files (x86)/SquareEnix/FINAL FANTASY XIV - A Realm Reborn";
|
||||
QStringLiteral("/Library/Application Support/FINAL FANTASY XIV ONLINE/Bottles/published_Final_Fantasy/drive_c/Program "
|
||||
"Files (x86)/SquareEnix/FINAL FANTASY XIV - A Realm Reborn");
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_LINUX)
|
||||
|
|
Loading…
Add table
Reference in a new issue