aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cruise')
-rw-r--r--engines/cruise/cruise.cpp4
-rw-r--r--engines/cruise/cruise.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/cruise/cruise.cpp b/engines/cruise/cruise.cpp
index 1e0b7b1d7a..b57e0ab188 100644
--- a/engines/cruise/cruise.cpp
+++ b/engines/cruise/cruise.cpp
@@ -92,7 +92,7 @@ Common::Error CruiseEngine::run() {
mainLoop();
- deinitialise();
+ deinitialize();
return Common::kNoError;
}
@@ -118,7 +118,7 @@ void CruiseEngine::initialize() {
_vm->_polyStruct = NULL;
}
-void CruiseEngine::deinitialise() {
+void CruiseEngine::deinitialize() {
_vm->_polyStructNorm.clear();
_vm->_polyStructExp.clear();
diff --git a/engines/cruise/cruise.h b/engines/cruise/cruise.h
index a9eb39c3f2..44e3f26d9d 100644
--- a/engines/cruise/cruise.h
+++ b/engines/cruise/cruise.h
@@ -69,7 +69,7 @@ private:
bool _speedFlag;
void initialize();
- void deinitialise();
+ void deinitialize();
bool loadLanguageStrings();
bool makeLoad(char *saveName);
void mainLoop();