[Scummvm-cvs-logs] scummvm master -> 331488cae0909084a1e8800706cf102741e3043b

bluegr bluegr at gmail.com
Wed Oct 15 09:37:51 CEST 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
331488cae0 MADS: Bugfix for the text view debugger command


Commit: 331488cae0909084a1e8800706cf102741e3043b
    https://github.com/scummvm/scummvm/commit/331488cae0909084a1e8800706cf102741e3043b
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2014-10-15T10:37:01+03:00

Commit Message:
MADS: Bugfix for the text view debugger command

Changed paths:
    engines/mads/debugger.cpp



diff --git a/engines/mads/debugger.cpp b/engines/mads/debugger.cpp
index ee967cb..3b77d53 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 {






More information about the Scummvm-git-logs mailing list