[Scummvm-git-logs] scummvm master -> 551d6a6bb09fd1f56da87add25c6eaf902412a8f
moralrecordings
code at moral.net.au
Sun Jan 5 06:30:17 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
551d6a6bb0 DIRECTOR: Fix bitmap sprite positioning
Commit: 551d6a6bb09fd1f56da87add25c6eaf902412a8f
https://github.com/scummvm/scummvm/commit/551d6a6bb09fd1f56da87add25c6eaf902412a8f
Author: Scott Percival (code at moral.net.au)
Date: 2020-01-05T14:30:04+08:00
Commit Message:
DIRECTOR: Fix bitmap sprite positioning
Changed paths:
engines/director/cast.cpp
diff --git a/engines/director/cast.cpp b/engines/director/cast.cpp
index 4042f45..f0c0746 100644
--- a/engines/director/cast.cpp
+++ b/engines/director/cast.cpp
@@ -63,8 +63,8 @@ BitmapCast::BitmapCast(Common::ReadStreamEndian &stream, uint32 castTag, uint16
_initialRect = Score::readRect(stream);
_boundingRect = Score::readRect(stream);
- _regX = stream.readUint16();
_regY = stream.readUint16();
+ _regX = stream.readUint16();
_bitsPerPixel = stream.readUint16();
if (_bitsPerPixel == 0)
More information about the Scummvm-git-logs
mailing list