diff options
author | Filippos Karapetis | 2014-10-15 10:35:49 +0300 |
---|---|---|
committer | Filippos Karapetis | 2014-10-15 10:35:49 +0300 |
commit | d3cfa8cc03bf0d1f9c4927e76377acbaabd63bab (patch) | |
tree | e5d45a493a0f22550f8cb49ea5f6cf801dfdbe7f /engines/mads | |
parent | eb84b1370087dc06f55e5afed18736c71c4a1ece (diff) | |
download | scummvm-rg350-d3cfa8cc03bf0d1f9c4927e76377acbaabd63bab.tar.gz scummvm-rg350-d3cfa8cc03bf0d1f9c4927e76377acbaabd63bab.tar.bz2 scummvm-rg350-d3cfa8cc03bf0d1f9c4927e76377acbaabd63bab.zip |
MADS: Bugfix for the text view debugger command
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/debugger.cpp | 2 |
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 { |