Skip to content

Commit

Permalink
MADS: Bugfix for the text view debugger command
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed Oct 15, 2014
1 parent 1658a34 commit 331488c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/mads/debugger.cpp
Expand Up @@ -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 {
Expand Down

0 comments on commit 331488c

Please sign in to comment.