diff options
author | Matthew Hoops | 2011-05-12 22:18:31 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-05-12 22:18:31 -0400 |
commit | 7e2edf16b3e2bf1d2b31999979a60802514df6cb (patch) | |
tree | 36d74173dbbefa7e09b4e4a3d7aa5db86831be79 | |
parent | d85dc010edb88f42493f434887fd45f29c213afd (diff) | |
download | scummvm-rg350-7e2edf16b3e2bf1d2b31999979a60802514df6cb.tar.gz scummvm-rg350-7e2edf16b3e2bf1d2b31999979a60802514df6cb.tar.bz2 scummvm-rg350-7e2edf16b3e2bf1d2b31999979a60802514df6cb.zip |
PEGASUS: Make the intro directory check only work in the full game
-rw-r--r-- | engines/pegasus/pegasus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pegasus/pegasus.cpp b/engines/pegasus/pegasus.cpp index a3a3822338..cf79900bf8 100644 --- a/engines/pegasus/pegasus.cpp +++ b/engines/pegasus/pegasus.cpp @@ -74,7 +74,7 @@ Common::Error PegasusEngine::run() { loadItemLocationData(); - if (!detectOpeningClosingDirectory()) { + if (!isDemo() && !detectOpeningClosingDirectory()) { Common::String message = "Missing intro directory. "; // Give Mac OS X a more specific message because we can |