1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-23 22:37:55 +02:00

remove entitlements and shared container usage

they're no longer required since we have a single app now
This commit is contained in:
Andrey Filipenkov
2022-08-03 10:57:27 +03:00
parent 10a14bd6fd
commit bb00ec8ce2
5 changed files with 1 additions and 36 deletions

View File

@@ -392,7 +392,7 @@ class VCMIDirsIOS final : public VCMIDirsApple
bfs::path binaryPath() const override;
};
bfs::path VCMIDirsIOS::userDataPath() const { return {ios_sharedDataPath() ?: ios_documentsPath()}; }
bfs::path VCMIDirsIOS::userDataPath() const { return {ios_documentsPath()}; }
bfs::path VCMIDirsIOS::userCachePath() const { return {ios_cachesPath()}; }
bfs::path VCMIDirsIOS::userLogsPath() const { return {ios_documentsPath()}; }