aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/chroot/chroot-fs-factory.h
diff options
context:
space:
mode:
authorVincent Bénony2016-01-06 10:19:49 +0100
committerVincent Bénony2016-01-06 16:20:29 +0100
commit793acc0f2db88078bc4c54c95156c75b3dfbda5e (patch)
tree52ef090f382e30a0a0704da3e360fc4378cd962a /backends/fs/chroot/chroot-fs-factory.h
parentcbde1ef953706a11c08fdacd034a64040d6e7ee9 (diff)
downloadscummvm-rg350-793acc0f2db88078bc4c54c95156c75b3dfbda5e.tar.gz
scummvm-rg350-793acc0f2db88078bc4c54c95156c75b3dfbda5e.tar.bz2
scummvm-rg350-793acc0f2db88078bc4c54c95156c75b3dfbda5e.zip
IOS: Adds a warning regarding the usage of the ChRootFS class
Diffstat (limited to 'backends/fs/chroot/chroot-fs-factory.h')
-rw-r--r--backends/fs/chroot/chroot-fs-factory.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/backends/fs/chroot/chroot-fs-factory.h b/backends/fs/chroot/chroot-fs-factory.h
index c7bd9a74a7..23b3c8f44a 100644
--- a/backends/fs/chroot/chroot-fs-factory.h
+++ b/backends/fs/chroot/chroot-fs-factory.h
@@ -20,8 +20,12 @@
*
*/
-#ifndef CHROOT_FS_FACTORY_H
-#define CHROOT_FS_FACTORY_H
+/*
+ * FIXME: Warning, using this factory in your backend may silently breaks some features. Instances are, for example, the FluidSynth code, and the POSIX plugin code.
+ */
+
+#ifndef BACKENDS_FS_CHROOT_CHROOT_FS_FACTORY_H
+#define BACKENDS_FS_CHROOT_CHROOT_FS_FACTORY_H
#include "backends/fs/fs-factory.h"
@@ -38,4 +42,4 @@ public:
ChRootFilesystemFactory(Common::String root);
};
-#endif /* CHROOT_FS_FACTORY_H */
+#endif /* BACKENDS_FS_CHROOT_CHROOT_FS_FACTORY_H */