diff options
author | Paul Gilbert | 2006-07-08 08:30:14 +0000 |
---|---|---|
committer | Paul Gilbert | 2006-07-08 08:30:14 +0000 |
commit | e79b3dfd414773942fcf42f5d3ba57dd59047d1f (patch) | |
tree | a11add815b7e097c4e923156c3b563f9793eecad | |
parent | 9fe05aa007642bbe86a51923b9cc51ce324c4b94 (diff) | |
download | scummvm-rg350-e79b3dfd414773942fcf42f5d3ba57dd59047d1f.tar.gz scummvm-rg350-e79b3dfd414773942fcf42f5d3ba57dd59047d1f.tar.bz2 scummvm-rg350-e79b3dfd414773942fcf42f5d3ba57dd59047d1f.zip |
Added shortcut stub for decoding a string without passing the current hotspot and action name
svn-id: r23407
-rw-r--r-- | engines/lure/strings.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/lure/strings.h b/engines/lure/strings.h index 03c1da2440..3fe43c2fa2 100644 --- a/engines/lure/strings.h +++ b/engines/lure/strings.h @@ -59,6 +59,9 @@ public: static StringData &getReference(); void getString(uint16 stringId, char *dest, const char *hotspotName, const char *actionName); + void getString(uint16 stringId, char *dest) { + getString(stringId, dest, NULL, NULL); + } char *getName(uint8 nameIndex); }; |