diff options
Diffstat (limited to 'engines/titanic/true_talk/tt_string.h')
-rw-r--r-- | engines/titanic/true_talk/tt_string.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/titanic/true_talk/tt_string.h b/engines/titanic/true_talk/tt_string.h index faf1d6dc71..600312431c 100644 --- a/engines/titanic/true_talk/tt_string.h +++ b/engines/titanic/true_talk/tt_string.h @@ -156,6 +156,12 @@ public: * Delets a specififed number of characters from the start of the string */ int deletePrefix(int count); + + /** + * Delets a specififed number of characters from the end of the string + */ + int deleteSuffix(int count); + }; } // End of namespace Titanic |