From 331488cae0909084a1e8800706cf102741e3043b Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Wed, 15 Oct 2014 10:35:49 +0300 Subject: [PATCH] MADS: Bugfix for the text view debugger command --- engines/mads/debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/mads/debugger.cpp b/engines/mads/debugger.cpp index ee967cb17ecb..3b77d5332b64 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 {