aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/console.h
diff options
context:
space:
mode:
authorMatthew Hoops2011-03-28 15:31:14 -0400
committerMatthew Hoops2011-03-28 22:26:23 -0400
commit4a7572d893fd50c25ff7576bdb7064bc3a85711d (patch)
treed8efc9149a304dcab9ebb656ff965f1265401681 /engines/mohawk/console.h
parente5811cd6c39333cf7a51eb4943bf4ead0aff681c (diff)
downloadscummvm-rg350-4a7572d893fd50c25ff7576bdb7064bc3a85711d.tar.gz
scummvm-rg350-4a7572d893fd50c25ff7576bdb7064bc3a85711d.tar.bz2
scummvm-rg350-4a7572d893fd50c25ff7576bdb7064bc3a85711d.zip
MOHAWK: Allow disabling compiling cstime
Diffstat (limited to 'engines/mohawk/console.h')
-rw-r--r--engines/mohawk/console.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/engines/mohawk/console.h b/engines/mohawk/console.h
index cefd0b1f4c..450802f508 100644
--- a/engines/mohawk/console.h
+++ b/engines/mohawk/console.h
@@ -32,9 +32,9 @@ namespace Mohawk {
class MohawkEngine_Riven;
class MohawkEngine_LivingBooks;
-class MohawkEngine_CSTime;
#ifdef ENABLE_MYST
+
class MohawkEngine_Myst;
class MystConsole : public GUI::Debugger {
@@ -60,6 +60,7 @@ private:
bool Cmd_Cache(int argc, const char **argv);
bool Cmd_Resources(int argc, const char **argv);
};
+
#endif
class RivenConsole : public GUI::Debugger {
@@ -102,6 +103,10 @@ private:
bool Cmd_ChangePage(int argc, const char **argv);
};
+#ifdef ENABLE_CSTIME
+
+class MohawkEngine_CSTime;
+
class CSTimeConsole : public GUI::Debugger {
public:
CSTimeConsole(MohawkEngine_CSTime *vm);
@@ -120,6 +125,8 @@ private:
bool Cmd_InvItem(int argc, const char **argv);
};
+#endif
+
} // End of namespace Mohawk
#endif