aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/patcher.cpp
diff options
context:
space:
mode:
authorAdrian Frühwirth2018-05-20 22:36:40 +0200
committerAdrian Frühwirth2018-05-20 23:40:20 +0200
commitc7f3416daa0238bb60e83a6d6d665a7f3a7e6d6c (patch)
treeed7b352caca6c4410c01b8eda21c58156bacdca8 /engines/xeen/patcher.cpp
parent5dda21c1c2552945a9446ee24ec6692734a0332a (diff)
downloadscummvm-rg350-c7f3416daa0238bb60e83a6d6d665a7f3a7e6d6c.tar.gz
scummvm-rg350-c7f3416daa0238bb60e83a6d6d665a7f3a7e6d6c.tar.bz2
scummvm-rg350-c7f3416daa0238bb60e83a6d6d665a7f3a7e6d6c.zip
JANITORIAL: Remove trailing whitespace
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);