diff options
author | Florian Kagerer | 2009-04-04 14:10:53 +0000 |
---|---|---|
committer | Florian Kagerer | 2009-04-04 14:10:53 +0000 |
commit | caf585bcb137464d753cc35892d327d78b46a586 (patch) | |
tree | 1ced9ae06f285c818589470a8943453d6bf3e1da /engines | |
parent | bff93a38aea26cdc2eb1b5b343443f52bfa7f278 (diff) | |
download | scummvm-rg350-caf585bcb137464d753cc35892d327d78b46a586.tar.gz scummvm-rg350-caf585bcb137464d753cc35892d327d78b46a586.tar.bz2 scummvm-rg350-caf585bcb137464d753cc35892d327d78b46a586.zip |
LOL: - minor item drawing bug fix
svn-id: r39840
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/scene_lol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/scene_lol.cpp b/engines/kyra/scene_lol.cpp index e591a5cc91..726905c299 100644 --- a/engines/kyra/scene_lol.cpp +++ b/engines/kyra/scene_lol.cpp @@ -1701,7 +1701,7 @@ void LoLEngine::drawSceneShapes() { uint16 w = _wllWallFlags[s]; - if (i == 16) + if (t == 16) w |= 0x80; drawBlockEffects(t, 0); |