aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorFilippos Karapetis2009-03-04 10:53:36 +0000
committerFilippos Karapetis2009-03-04 10:53:36 +0000
commitf006f9491498a09f47ca84ebbe5285c806fd1c89 (patch)
treea9e9cab8241b1c800a0df49fc8f80a7fd5419862 /engines
parentf6028bc8224fb20bca13c947e76a1146753a975d (diff)
downloadscummvm-rg350-f006f9491498a09f47ca84ebbe5285c806fd1c89.tar.gz
scummvm-rg350-f006f9491498a09f47ca84ebbe5285c806fd1c89.tar.bz2
scummvm-rg350-f006f9491498a09f47ca84ebbe5285c806fd1c89.zip
Fixed compilation when ENABLE_LOL is not set
svn-id: r39123
Diffstat (limited to 'engines')
-rw-r--r--engines/kyra/lol.cpp3
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;
}