aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/patcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/xeen/patcher.cpp')
-rw-r--r--engines/xeen/patcher.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/xeen/patcher.cpp b/engines/xeen/patcher.cpp
index f9d9ee77ff..10c8664776 100644
--- a/engines/xeen/patcher.cpp
+++ b/engines/xeen/patcher.cpp
@@ -57,7 +57,7 @@ void Patcher::patchScripts() {
FileManager &files = *g_vm->_files;
Map &map = *g_vm->_map;
Party &party = *g_vm->_party;
-
+
uint gameId = g_vm->getGameID();
if (gameId == GType_WorldOfXeen)
gameId = files._ccNum ? GType_DarkSide : GType_Clouds;
@@ -66,7 +66,7 @@ void Patcher::patchScripts() {
const ScriptEntry &se = SCRIPT_PATCHES[patchIdx];
if (se._gameId != gameId || se._mapId != party._mazeId)
continue;
-
+
MazeEvent evt;
Common::MemoryReadStream memStream(se._data, se._data[0] + 1);
Common::Serializer s(&memStream, nullptr);