aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/string.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-23 21:50:51 -0400
committerPaul Gilbert2016-07-23 21:50:51 -0400
commitf1344c2c277125e652092b94a0a5347f842c45d0 (patch)
tree6424d8afb5a45ea0ba9a940d9f12ffb7f337ce5e /engines/titanic/support/string.h
parent2efee2ae8c1c4e285fe81bce66a594d9b949548a (diff)
downloadscummvm-rg350-f1344c2c277125e652092b94a0a5347f842c45d0.tar.gz
scummvm-rg350-f1344c2c277125e652092b94a0a5347f842c45d0.tar.bz2
scummvm-rg350-f1344c2c277125e652092b94a0a5347f842c45d0.zip
TITANIC: Added CCreditText loading
Diffstat (limited to 'engines/titanic/support/string.h')
-rw-r--r--engines/titanic/support/string.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/titanic/support/string.h b/engines/titanic/support/string.h
index fdaf92cfad..9550ce88a7 100644
--- a/engines/titanic/support/string.h
+++ b/engines/titanic/support/string.h
@@ -75,6 +75,11 @@ public:
int indexOf(char c) const;
/**
+ * Returns the index of the first occurance of a given string
+ */
+ int indexOf(const char *s) const;
+
+ /**
* Returns the index of the last occurance of a given character
*/
int lastIndexOf(char c) const;