From caa51ef49af5f6e92169a2f8095c08325823cb44 Mon Sep 17 00:00:00 2001 From: Simei Yin Date: Thu, 20 Jul 2017 10:39:24 +0200 Subject: SLUDGE: Change all structure names to Uppercase --- engines/sludge/talk.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'engines/sludge/talk.h') 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 -- cgit v1.2.3