aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/gfx.cpp')
-rw-r--r--scumm/gfx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index a499c148a6..50795e820e 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -2619,9 +2619,9 @@ void Scumm::initCycl(const byte *ptr) {
ptr += 2;
cycl->counter = 0;
- cycl->delay = 16384 / READ_BE_UINT16_UNALIGNED(ptr);
+ cycl->delay = 16384 / READ_BE_UINT16(ptr);
ptr += 2;
- cycl->flags = READ_BE_UINT16_UNALIGNED(ptr);
+ cycl->flags = READ_BE_UINT16(ptr);
ptr += 2;
cycl->start = *ptr++;
cycl->end = *ptr++;