aboutsummaryrefslogtreecommitdiff
path: root/engines/m4
diff options
context:
space:
mode:
authorMax Horn2008-09-07 21:43:36 +0000
committerMax Horn2008-09-07 21:43:36 +0000
commitd48a57723a47d127d6e9c02f44743a89423ce6f8 (patch)
tree80210f766908f4b26c40e0131530d2f15e792cad /engines/m4
parent2f30e5f63d93c94d545730d9f333049dac9bdb1e (diff)
downloadscummvm-rg350-d48a57723a47d127d6e9c02f44743a89423ce6f8.tar.gz
scummvm-rg350-d48a57723a47d127d6e9c02f44743a89423ce6f8.tar.bz2
scummvm-rg350-d48a57723a47d127d6e9c02f44743a89423ce6f8.zip
added two FIXMEs to M4 -- somehow, adding two subdirs of CWD named 'goodstuf' and 'resource' to the list of default dirs doesn't sound very sensible to me ;)
svn-id: r34426
Diffstat (limited to 'engines/m4')
-rw-r--r--engines/m4/m4.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/m4/m4.cpp b/engines/m4/m4.cpp
index b2c0eda1ce..e49d33acb0 100644
--- a/engines/m4/m4.cpp
+++ b/engines/m4/m4.cpp
@@ -108,8 +108,8 @@ M4Engine::M4Engine(OSystem *syst, const M4GameDescription *gameDesc) :
_vm = this;
Common::File::addDefaultDirectory(_gameDataPath);
- Common::File::addDefaultDirectory("goodstuf");
- Common::File::addDefaultDirectory("resource");
+ Common::File::addDefaultDirectory("goodstuf"); // FIXME: This is nonsense
+ Common::File::addDefaultDirectory("resource"); // FIXME: This is nonsense
Common::addSpecialDebugLevel(kDebugScript, "script", "Script debug level");
Common::addSpecialDebugLevel(kDebugConversations, "conversations", "Conversations debugging");