diff options
author | Vincent Bénony | 2015-12-01 18:53:52 +0100 |
---|---|---|
committer | Vincent Bénony | 2016-01-06 15:35:17 +0100 |
commit | 108ce38443eda81032b72e81202237da53f922e8 (patch) | |
tree | f8c0865bb27ce8f42410dd152c69660ade82b8b1 /common | |
parent | cfa8d3bd8b7d624f4b04a02f1d42a89e2f3091c0 (diff) | |
download | scummvm-rg350-108ce38443eda81032b72e81202237da53f922e8.tar.gz scummvm-rg350-108ce38443eda81032b72e81202237da53f922e8.tar.bz2 scummvm-rg350-108ce38443eda81032b72e81202237da53f922e8.zip |
IOS: Added a chroot like filesystem
This is needed because it is not possible to keep absolute paths to the iOS document directory, because a part of its name change between each installation / update.
Diffstat (limited to 'common')
-rw-r--r-- | common/fs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/fs.h b/common/fs.h index b5b88ba8cb..e6f2fe18fe 100644 --- a/common/fs.h +++ b/common/fs.h @@ -58,10 +58,11 @@ class FSList : public Array<FSNode> {}; class FSNode : public ArchiveMember { private: SharedPtr<AbstractFSNode> _realNode; - FSNode(AbstractFSNode *realNode); public: - /** + FSNode(AbstractFSNode *realNode); + + /** * Flag to tell listDir() which kind of files to list. */ enum ListMode { |