diff options
author | Strangerke | 2014-06-04 01:03:51 +0200 |
---|---|---|
committer | Strangerke | 2014-06-04 01:03:51 +0200 |
commit | b6d8e2b24716f9d1c8e91be15f5cba6da7764cae (patch) | |
tree | af8be9c7f2a0da7e94990de909276d7a2cb63a74 | |
parent | c5072db8fb6706768ad4a116c9cb3bd3c5f5efa3 (diff) | |
download | scummvm-rg350-b6d8e2b24716f9d1c8e91be15f5cba6da7764cae.tar.gz scummvm-rg350-b6d8e2b24716f9d1c8e91be15f5cba6da7764cae.tar.bz2 scummvm-rg350-b6d8e2b24716f9d1c8e91be15f5cba6da7764cae.zip |
CGE2: Unstub some code used to move sprites
-rw-r--r-- | engines/cge2/vga13h.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/cge2/vga13h.cpp b/engines/cge2/vga13h.cpp index 334aa99716..d7f8fb23fe 100644 --- a/engines/cge2/vga13h.cpp +++ b/engines/cge2/vga13h.cpp @@ -455,9 +455,8 @@ void Sprite::step(int nr) { p._x += seq->_dx; p._y += seq->_dy; p._z += seq->_dz; - //if (!_flags._kept) - // gotoxyz(p); - warning("STUB: Sprite::step()"); + if (!_flags._kept) + gotoxyz(p); } } if (seq && (seq->_dly >= 0)) |