aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/menu.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2006-08-07 13:28:19 +0000
committerPaul Gilbert2006-08-07 13:28:19 +0000
commit389c7a403c42724ecd53493aa037829c3e46e1a0 (patch)
tree2f5990725fc6c7c74a14eaacdbf5c7bf23f0bcbb /engines/lure/menu.cpp
parentd80d6157b636a320d338b91f09c372a59e8f0592 (diff)
downloadscummvm-rg350-389c7a403c42724ecd53493aa037829c3e46e1a0.tar.gz
scummvm-rg350-389c7a403c42724ecd53493aa037829c3e46e1a0.tar.bz2
scummvm-rg350-389c7a403c42724ecd53493aa037829c3e46e1a0.zip
changed references to StringData::getString to use two parameter version rather than passing NULL values
svn-id: r23697
Diffstat (limited to 'engines/lure/menu.cpp')
-rw-r--r--engines/lure/menu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/menu.cpp b/engines/lure/menu.cpp
index eb9c1f591b..95aa541435 100644
--- a/engines/lure/menu.cpp
+++ b/engines/lure/menu.cpp
@@ -251,7 +251,7 @@ uint16 PopupMenu::ShowInventory() {
if (hotspot->roomNumber == PLAYER_ID) {
idList[itemCtr] = hotspot->hotspotId;
char *hotspotName = itemNames[itemCtr++] = (char *) malloc(MAX_HOTSPOT_NAME_SIZE);
- strings.getString(hotspot->nameId, hotspotName, NULL, NULL);
+ strings.getString(hotspot->nameId, hotspotName);
}
}