[Scummvm-cvs-logs] scummvm master -> ab2d33f0dc9377e1e705c857a1ebac108b186e57

Strangerke Strangerke at scummvm.org
Thu May 29 16:58:52 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:
ab2d33f0dc LURE: Remove useless parameters in function call


Commit: ab2d33f0dc9377e1e705c857a1ebac108b186e57
    https://github.com/scummvm/scummvm/commit/ab2d33f0dc9377e1e705c857a1ebac108b186e57
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-05-29T16:55:06+02:00

Commit Message:
LURE: Remove useless parameters in function call

Changed paths:
    engines/lure/debugger.cpp



diff --git a/engines/lure/debugger.cpp b/engines/lure/debugger.cpp
index 642376a..0321867 100644
--- a/engines/lure/debugger.cpp
+++ b/engines/lure/debugger.cpp
@@ -563,7 +563,7 @@ bool Debugger::cmd_saveStrings(int argc, const char **argv) {
 	}
 
 	uint16 id = strToInt(argv[1]);
-	strings.getString(id, buffer, NULL, NULL);
+	strings.getString(id, buffer);
 	debugPrintf("%s\n", buffer);
 
 /* Commented out code for saving all text strings - note that 0x1000 is chosen






More information about the Scummvm-git-logs mailing list