aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/talk.h
diff options
context:
space:
mode:
authorSimei Yin2017-07-20 10:39:24 +0200
committerSimei Yin2017-07-20 19:10:01 +0200
commitcaa51ef49af5f6e92169a2f8095c08325823cb44 (patch)
tree9e2b060bf7d325d84a9b212416b36916ceaad277 /engines/sludge/talk.h
parent9752d7bb43f41106147e7a39e0381fae51443c94 (diff)
downloadscummvm-rg350-caa51ef49af5f6e92169a2f8095c08325823cb44.tar.gz
scummvm-rg350-caa51ef49af5f6e92169a2f8095c08325823cb44.tar.bz2
scummvm-rg350-caa51ef49af5f6e92169a2f8095c08325823cb44.zip
SLUDGE: Change all structure names to Uppercase
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