aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
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 {