aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/talk.h
diff options
context:
space:
mode:
authoryinsimei2017-07-11 14:57:31 +0200
committerEugene Sandulenko2017-07-13 18:27:45 +0200
commit800987ab95c4faa5532d735a85516fd09f5de724 (patch)
treedf71c20322ddfd8b441fa120face21663ea9e164 /engines/sludge/talk.h
parent19ff9f419baae348b153c45c2857a7cccb33f725 (diff)
downloadscummvm-rg350-800987ab95c4faa5532d735a85516fd09f5de724.tar.gz
scummvm-rg350-800987ab95c4faa5532d735a85516fd09f5de724.tar.bz2
scummvm-rg350-800987ab95c4faa5532d735a85516fd09f5de724.zip
SLUDGE: replace char *by Common::String
Diffstat (limited to 'engines/sludge/talk.h')
-rw-r--r--engines/sludge/talk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sludge/talk.h b/engines/sludge/talk.h
index 4f344fb064..fe966cac27 100644
--- a/engines/sludge/talk.h
+++ b/engines/sludge/talk.h
@@ -27,7 +27,7 @@
namespace Sludge {
struct speechLine {
- char *textLine;
+ Common::String textLine;
speechLine *next;
int x;
};
@@ -39,7 +39,7 @@ struct speechStruct {
spritePalette talkCol;
};
-int wrapSpeech(char *theText, int objT, int sampleFile, bool);
+int wrapSpeech(const Common::String &theText, int objT, int sampleFile, bool);
void viewSpeech();
void killAllSpeech();
int isThereAnySpeechGoingOn();