aboutsummaryrefslogtreecommitdiff
path: root/script_v1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'script_v1.cpp')
-rw-r--r--script_v1.cpp26
1 files changed, 3 insertions, 23 deletions
diff --git a/script_v1.cpp b/script_v1.cpp
index 481a10c10f..e9595db146 100644
--- a/script_v1.cpp
+++ b/script_v1.cpp
@@ -15,27 +15,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
- * Change Log:
- * $Log$
- * Revision 1.6 2001/11/05 19:21:49 strigeus
- * bug fixes,
- * speech in dott
- *
- * Revision 1.5 2001/10/29 22:09:20 strigeus
- * script invoked loading&saving in compatible mode
- *
- * Revision 1.4 2001/10/26 17:34:50 strigeus
- * bug fixes, code cleanup
- *
- * Revision 1.3 2001/10/23 19:51:50 strigeus
- * recompile not needed when switching games
- * debugger skeleton implemented
- *
- * Revision 1.2 2001/10/16 20:31:27 strigeus
- * misc fixes
- *
- * Revision 1.1 2001/10/16 10:01:47 strigeus
- * preliminary DOTT support
+ * $Header$
*
*/
@@ -737,9 +717,9 @@ void Scumm::o5_drawObject() {
return;
od = &_objs[index];
if (_xPos!=0xFF) {
- od->cdhd_10 += (_xPos - od->x_pos)<<3;
+ od->walk_x += (_xPos - od->x_pos)<<3;
od->x_pos = _xPos;
- od->cdhd_12 += (_yPos - od->y_pos)<<3;
+ od->walk_y += (_yPos - od->y_pos)<<3;
od->y_pos = _yPos;
}
addObjectToDrawQue(index);