aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/talk.h
diff options
context:
space:
mode:
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();