diff options
| author | Johannes Schickel | 2005-11-13 19:35:01 +0000 |
|---|---|---|
| committer | Johannes Schickel | 2005-11-13 19:35:01 +0000 |
| commit | e0aef914fd2ef0eb852ea325028d29991e2f9a62 (patch) | |
| tree | 6bd811f691d029666f1d0f5880f67ef1b0cd0268 /kyra/sprites.cpp | |
| parent | 267fc7e2f652feaf6168d65ccf2916e09fe12edb (diff) | |
| download | scummvm-rg350-e0aef914fd2ef0eb852ea325028d29991e2f9a62.tar.gz scummvm-rg350-e0aef914fd2ef0eb852ea325028d29991e2f9a62.tar.bz2 scummvm-rg350-e0aef914fd2ef0eb852ea325028d29991e2f9a62.zip | |
Fixed a bug with the sprite loader and various things related to
the scene switching code. Now the intro works correctly with a minor graphics glitch.
svn-id: r19588
Diffstat (limited to 'kyra/sprites.cpp')
| -rw-r--r-- | kyra/sprites.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kyra/sprites.cpp b/kyra/sprites.cpp index ec20fd91b6..be5b54ec25 100644 --- a/kyra/sprites.cpp +++ b/kyra/sprites.cpp @@ -400,7 +400,7 @@ void Sprites::loadDAT(const char *filename, SceneExits &exits) { assert(fileSize > 0x6D); - _engine->_northExitHeight = READ_BE_UINT16(_dat + 0x15); + _engine->_northExitHeight = READ_LE_UINT16(_dat + 0x15); if (_engine->_northExitHeight & 1) _engine->_northExitHeight += 1; // XXX |
