diff options
author | Strangerke | 2014-05-29 16:44:38 +0200 |
---|---|---|
committer | Strangerke | 2014-05-29 16:55:06 +0200 |
commit | ab2d33f0dc9377e1e705c857a1ebac108b186e57 (patch) | |
tree | f6e69fd5f36d2d8b1f3d2a1e433d865bda4daa50 /engines/lure | |
parent | 73c02d4166aef3b372cb33f0356be3c704a35201 (diff) | |
download | scummvm-rg350-ab2d33f0dc9377e1e705c857a1ebac108b186e57.tar.gz scummvm-rg350-ab2d33f0dc9377e1e705c857a1ebac108b186e57.tar.bz2 scummvm-rg350-ab2d33f0dc9377e1e705c857a1ebac108b186e57.zip |
LURE: Remove useless parameters in function call
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/debugger.cpp b/engines/lure/debugger.cpp index 642376a201..032186717d 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 |