diff options
author | Max Horn | 2008-09-07 21:43:36 +0000 |
---|---|---|
committer | Max Horn | 2008-09-07 21:43:36 +0000 |
commit | d48a57723a47d127d6e9c02f44743a89423ce6f8 (patch) | |
tree | 80210f766908f4b26c40e0131530d2f15e792cad | |
parent | 2f30e5f63d93c94d545730d9f333049dac9bdb1e (diff) | |
download | scummvm-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
-rw-r--r-- | engines/m4/m4.cpp | 4 |
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"); |