fix mac content loading

it now looks for the content next to the .app bundle and not inside it
This commit is contained in:
stonedDiscord 2019-08-11 23:58:43 +02:00
parent 7fe64163ea
commit 047ce04631

View File

@ -30,6 +30,8 @@ QString AOApplication::get_base_path()
QString external_storage = getenv("EXTERNAL_STORAGE");
base_path = external_storage + "/AO2/";
}
#elif defined __APPLE__
base_path = applicationDirPath() + "/../../../base/";
#else
base_path = applicationDirPath() + "/base/";
#endif