aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/freeze.cpp
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/freeze.cpp
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/freeze.cpp')
-rw-r--r--engines/sludge/freeze.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/sludge/freeze.cpp b/engines/sludge/freeze.cpp
index ebd91a30a9..776a6f80a8 100644
--- a/engines/sludge/freeze.cpp
+++ b/engines/sludge/freeze.cpp
@@ -38,13 +38,13 @@
namespace Sludge {
-extern onScreenPerson *allPeople;
-extern screenRegion *allScreenRegions;
-extern screenRegion *overRegion;
-extern speechStruct *speech;
-extern inputType input;
-extern eventHandlers *currentEvents;
-extern personaAnimation *mouseCursorAnim;
+extern OnScreenPerson *allPeople;
+extern ScreenRegion *allScreenRegions;
+extern ScreenRegion *overRegion;
+extern SpeechStruct *speech;
+extern InputType input;
+extern EventHandlers *currentEvents;
+extern PersonaAnimation *mouseCursorAnim;
extern int mouseCursorFrameNum;
void GraphicsManager::freezeGraphics() {
@@ -92,7 +92,7 @@ bool GraphicsManager::freeze() {
newFreezer->allPeople = allPeople;
allPeople = NULL;
- statusStuff *newStatusStuff = new statusStuff;
+ StatusStuff *newStatusStuff = new StatusStuff ;
if (!checkNew(newStatusStuff))
return false;
newFreezer->frozenStatus = copyStatusBarStuff(newStatusStuff);
@@ -110,10 +110,10 @@ bool GraphicsManager::freeze() {
initSpeech();
newFreezer->currentEvents = currentEvents;
- currentEvents = new eventHandlers;
+ currentEvents = new EventHandlers;
if (!checkNew(currentEvents))
return false;
- memset(currentEvents, 0, sizeof(eventHandlers));
+ memset(currentEvents, 0, sizeof(EventHandlers));
newFreezer->next = _frozenStuff;
_frozenStuff = newFreezer;