aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screen.cpp
diff options
context:
space:
mode:
authorBenjamin Haisch2009-01-22 13:04:29 +0000
committerBenjamin Haisch2009-01-22 13:04:29 +0000
commit5b8105afb3a345cfd66efa795726329f509572c3 (patch)
tree4ff90316c9dee6be8bda8a0c3f8413ab5d8178a5 /engines/made/screen.cpp
parentd5d7175691ea3cde7aa941886e3197763c1398c6 (diff)
downloadscummvm-rg350-5b8105afb3a345cfd66efa795726329f509572c3.tar.gz
scummvm-rg350-5b8105afb3a345cfd66efa795726329f509572c3.tar.bz2
scummvm-rg350-5b8105afb3a345cfd66efa795726329f509572c3.zip
- Added support for The Manhole EGA version
- Support for 'chunked' picture resources and EGA pictures - Improved the mouth sync in RtZ (still not perfect, though) - Removed obsolete TODOs - Fixed sfPlayMovie to return if the movie playback was aborted or not; this is used by RtZ to determine if it should display the credits screen after the intro movie svn-id: r35997
Diffstat (limited to 'engines/made/screen.cpp')
-rw-r--r--engines/made/screen.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/made/screen.cpp b/engines/made/screen.cpp
index e3e56381e6..dfcda3f95b 100644
--- a/engines/made/screen.cpp
+++ b/engines/made/screen.cpp
@@ -447,7 +447,6 @@ uint16 Screen::placeSprite(uint16 channelIndex, uint16 flexIndex, int16 x, int16
y1 = y;
x2 = x + surf->w + 1;
y2 = y + surf->h + 1;
- //TODO: clipRect(x1, y1, x2, y2);
if (_ground == 0)
state |= 2;
@@ -498,7 +497,6 @@ uint16 Screen::placeAnim(uint16 channelIndex, uint16 animIndex, int16 x, int16 y
y1 = y;
x2 = x + anim->getWidth();
y2 = y + anim->getHeight();
- //TODO: clipRect(x1, y1, x2, y2);
if (anim->getFlags() == 1 || _ground == 0)
state |= 2;
@@ -576,7 +574,6 @@ uint16 Screen::placeText(uint16 channelIndex, uint16 textObjectIndex, int16 x, i
y1 = y;
x2 = x + textWidth;
y2 = y + textHeight;
- //TODO: clipRect(x1, y1, x2, y2);
if (textWidth > 0 && outlineColor != -1) {
x++;
@@ -610,8 +607,6 @@ uint16 Screen::placeText(uint16 channelIndex, uint16 textObjectIndex, int16 x, i
void Screen::show() {
- // TODO
-
if (_screenLock)
return;