[Scummvm-git-logs] scummvm master -> 1855f6a68541889ec61b5700be45f187ccd7fd66
dreammaster
dreammaster at scummvm.org
Sun Mar 25 01:12:02 CET 2018
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:
1855f6a685 XEEN: Fix drawing doorways at 4 step distance
Commit: 1855f6a68541889ec61b5700be45f187ccd7fd66
https://github.com/scummvm/scummvm/commit/1855f6a68541889ec61b5700be45f187ccd7fd66
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-03-24T20:11:58-04:00
Commit Message:
XEEN: Fix drawing doorways at 4 step distance
Changed paths:
engines/xeen/interface_scene.cpp
diff --git a/engines/xeen/interface_scene.cpp b/engines/xeen/interface_scene.cpp
index 11b588e..e569b54 100644
--- a/engines/xeen/interface_scene.cpp
+++ b/engines/xeen/interface_scene.cpp
@@ -3930,7 +3930,9 @@ void InterfaceScene::drawIndoors() {
_indoorList._fwl_4F1R._frame = 13;
}
- if (_wo[27] || _wo[22] || _wo[15] || _wo[96]) {
+ if (_wo[27] || _wo[22] || _wo[15]) {
+ } else if (_wo[96]) {
+ _indoorList._fwl_4F._frame = 7;
} else if (_wo[50]) {
_indoorList._fwl_4F._frame = 16;
} else if (_wo[156]) {
More information about the Scummvm-git-logs
mailing list