aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorFilippos Karapetis2014-10-15 10:35:49 +0300
committerFilippos Karapetis2014-10-15 10:37:01 +0300
commit331488cae0909084a1e8800706cf102741e3043b (patch)
tree7878bf2caaff5066a077130b51e02f25f878d6a5 /engines
parent1658a34ef5e6e6d48e45c4f38d7d507eb0f4d5ff (diff)
downloadscummvm-rg350-331488cae0909084a1e8800706cf102741e3043b.tar.gz
scummvm-rg350-331488cae0909084a1e8800706cf102741e3043b.tar.bz2
scummvm-rg350-331488cae0909084a1e8800706cf102741e3043b.zip
MADS: Bugfix for the text view debugger command
Diffstat (limited to 'engines')
-rw-r--r--engines/mads/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/debugger.cpp b/engines/mads/debugger.cpp
index ee967cb17e..3b77d5332b 100644
--- a/engines/mads/debugger.cpp
+++ b/engines/mads/debugger.cpp
@@ -381,7 +381,7 @@ bool Debugger::Cmd_PlayText(int argc, const char **argv) {
resName.deleteChar(0);
Common::File f;
- if (f.exists(resName) || f.exists(resName + ".res")) {
+ if (f.exists(resName) || f.exists(resName + ".txr")) {
Nebular::TextView::execute(_vm, resName);
return false;
} else {