aboutsummaryrefslogtreecommitdiff
path: root/engines/saga
diff options
context:
space:
mode:
authorTorbjörn Andersson2010-09-28 18:55:54 +0000
committerTorbjörn Andersson2010-09-28 18:55:54 +0000
commit30db851ef005b13d42f41de3a720cc6450722476 (patch)
tree37d1b40352b63f52073fa00c15e8f5037d6a039c /engines/saga
parent2d82cc385ddc87c9be0f3799e9d06e60640e6ac2 (diff)
downloadscummvm-rg350-30db851ef005b13d42f41de3a720cc6450722476.tar.gz
scummvm-rg350-30db851ef005b13d42f41de3a720cc6450722476.tar.bz2
scummvm-rg350-30db851ef005b13d42f41de3a720cc6450722476.zip
SAGA: Fix wrong logo animation in some versions of ITE
Not all releases put the Wyrmkeep credits patch in a "graphics" sub-directory, so assume it could be anywhere. svn-id: r52930
Diffstat (limited to 'engines/saga')
-rw-r--r--engines/saga/resource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/resource.cpp b/engines/saga/resource.cpp
index 646ee1d629..7d82aa4bda 100644
--- a/engines/saga/resource.cpp
+++ b/engines/saga/resource.cpp
@@ -225,7 +225,7 @@ bool Resource::createContexts() {
// If the Wyrmkeep credits file is found, set the Wyrmkeep version flag to true
- if (Common::File::exists("graphics/credit3n.dlt")) {
+ if (Common::File::exists("credit3n.dlt")) {
_vm->_gf_wyrmkeep = true;
}