diff options
author | Willem Jan Palenstijn | 2014-01-22 22:00:49 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2014-01-22 23:18:24 +0100 |
commit | 219a68eeda2c0e14a29f1cfb969dabe3a70e1544 (patch) | |
tree | 02f005f2e794d591f9920715e9746a321303f5bc | |
parent | d32816c0279ebf064542dafd1f1b257f0661bd2a (diff) | |
download | scummvm-rg350-219a68eeda2c0e14a29f1cfb969dabe3a70e1544.tar.gz scummvm-rg350-219a68eeda2c0e14a29f1cfb969dabe3a70e1544.tar.bz2 scummvm-rg350-219a68eeda2c0e14a29f1cfb969dabe3a70e1544.zip |
AMIGAOS4: Clarify virtual fs root node
-rw-r--r-- | backends/fs/amigaos4/amigaos4-fs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/backends/fs/amigaos4/amigaos4-fs.h b/backends/fs/amigaos4/amigaos4-fs.h index c5ca61476f..7ce9981479 100644 --- a/backends/fs/amigaos4/amigaos4-fs.h +++ b/backends/fs/amigaos4/amigaos4-fs.h @@ -43,7 +43,13 @@ */ class AmigaOSFilesystemNode : public AbstractFSNode { protected: + /** + * The main file lock. + * If this is NULL but _bIsValid is true, then this Node references + * the virtual filesystem root. + */ BPTR _pFileLock; + Common::String _sDisplayName; Common::String _sPath; bool _bIsDirectory; |