diff options
| author | Matthew Hoops | 2011-03-28 15:20:30 -0400 | 
|---|---|---|
| committer | Matthew Hoops | 2011-03-28 22:26:23 -0400 | 
| commit | e5811cd6c39333cf7a51eb4943bf4ead0aff681c (patch) | |
| tree | 236d057aa30fdbbf870cf337b8679e276a1fd1d8 /engines/mohawk/console.h | |
| parent | 344369c294e4ade7b6f72de27daf794b0d23d3e3 (diff) | |
| download | scummvm-rg350-e5811cd6c39333cf7a51eb4943bf4ead0aff681c.tar.gz scummvm-rg350-e5811cd6c39333cf7a51eb4943bf4ead0aff681c.tar.bz2 scummvm-rg350-e5811cd6c39333cf7a51eb4943bf4ead0aff681c.zip  | |
MOHAWK: Allow disabling compilation of Myst
Diffstat (limited to 'engines/mohawk/console.h')
| -rw-r--r-- | engines/mohawk/console.h | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/mohawk/console.h b/engines/mohawk/console.h index b7b6b2567e..cefd0b1f4c 100644 --- a/engines/mohawk/console.h +++ b/engines/mohawk/console.h @@ -30,11 +30,13 @@  namespace Mohawk { -class MohawkEngine_Myst;  class MohawkEngine_Riven;  class MohawkEngine_LivingBooks;  class MohawkEngine_CSTime; +#ifdef ENABLE_MYST +class MohawkEngine_Myst; +  class MystConsole : public GUI::Debugger {  public:  	MystConsole(MohawkEngine_Myst *vm); @@ -58,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 {  public:  | 
