diff options
| author | Filippos Karapetis | 2009-03-04 10:53:36 +0000 | 
|---|---|---|
| committer | Filippos Karapetis | 2009-03-04 10:53:36 +0000 | 
| commit | f006f9491498a09f47ca84ebbe5285c806fd1c89 (patch) | |
| tree | a9e9cab8241b1c800a0df49fc8f80a7fd5419862 | |
| parent | f6028bc8224fb20bca13c947e76a1146753a975d (diff) | |
| download | scummvm-rg350-f006f9491498a09f47ca84ebbe5285c806fd1c89.tar.gz scummvm-rg350-f006f9491498a09f47ca84ebbe5285c806fd1c89.tar.bz2 scummvm-rg350-f006f9491498a09f47ca84ebbe5285c806fd1c89.zip | |
Fixed compilation when ENABLE_LOL is not set
svn-id: r39123
| -rw-r--r-- | engines/kyra/lol.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp index 0cd3e14469..24f8aae5a1 100644 --- a/engines/kyra/lol.cpp +++ b/engines/kyra/lol.cpp @@ -433,6 +433,7 @@ Common::Error LoLEngine::init() {  }  Common::Error LoLEngine::go() { +#ifdef ENABLE_LOL  	setupPrologueData(true);  	if (!saveFileLoadable(0)) @@ -519,7 +520,7 @@ Common::Error LoLEngine::go() {  	_tim = 0;  	// TODO: outro - +#endif  	return Common::kNoError;  } | 
