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.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/sludge/talk.h b/engines/sludge/talk.h
index de535add3f..0d7fa80f0f 100644
--- a/engines/sludge/talk.h
+++ b/engines/sludge/talk.h
@@ -26,15 +26,15 @@
namespace Sludge {
-struct speechLine {
+struct SpeechLine {
Common::String textLine;
- speechLine *next;
+ SpeechLine *next;
int x;
};
-struct speechStruct {
- onScreenPerson *currentTalker;
- speechLine *allSpeech;
+struct SpeechStruct {
+ OnScreenPerson *currentTalker;
+ SpeechLine *allSpeech;
int speechY, lastFile, lookWhosTalking;
SpritePalette talkCol;
};
@@ -44,8 +44,8 @@ void viewSpeech();
void killAllSpeech();
int isThereAnySpeechGoingOn();
void initSpeech();
-void saveSpeech(speechStruct *sS, Common::WriteStream *stream);
-bool loadSpeech(speechStruct *sS, Common::SeekableReadStream *stream);
+void saveSpeech(SpeechStruct *sS, Common::WriteStream *stream);
+bool loadSpeech(SpeechStruct *sS, Common::SeekableReadStream *stream);
} // End of namespace Sludge