aboutsummaryrefslogtreecommitdiff
path: root/engines/toon/hotspot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/toon/hotspot.cpp')
-rw-r--r--engines/toon/hotspot.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/toon/hotspot.cpp b/engines/toon/hotspot.cpp
index d29e4f55a6..3ddda1450b 100644
--- a/engines/toon/hotspot.cpp
+++ b/engines/toon/hotspot.cpp
@@ -42,7 +42,7 @@ void Hotspots::load(Common::ReadStream *Stream) {
for (int32 i = 0; i < _numItems; i++) {
for (int32 a = 0; a < 256; a++)
- _items[i].setData(a,Stream->readSint16BE());
+ _items[i].setData(a, Stream->readSint16BE());
}
}
@@ -104,7 +104,7 @@ bool Hotspots::LoadRif(Common::String rifName, Common::String additionalRifName)
uint32 size = 0;
uint8 *rifData = _vm->resources()->getFileData(rifName, &size);
- if (!rifData)
+ if (!rifData)
return false;
uint32 size2 = 0;
@@ -121,7 +121,7 @@ bool Hotspots::LoadRif(Common::String rifName, Common::String additionalRifName)
_numItems = (rifsize + rifsize2) / 512;
- if (_items)
+ if (_items)
delete[] _items;
_items = new HotspotData[_numItems];