aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screen.cpp
diff options
context:
space:
mode:
authorBenjamin Haisch2008-05-29 12:57:11 +0000
committerBenjamin Haisch2008-05-29 12:57:11 +0000
commitb9776d46b24476a5d4f30eb4fc993ce6a4cdb76f (patch)
tree547213cd83bfe6b81aeacf56069f527f4deb453b /engines/made/screen.cpp
parent3f91c579fcdc4ed43a18792f6bd84d9e156efa13 (diff)
downloadscummvm-rg350-b9776d46b24476a5d4f30eb4fc993ce6a4cdb76f.tar.gz
scummvm-rg350-b9776d46b24476a5d4f30eb4fc993ce6a4cdb76f.tar.bz2
scummvm-rg350-b9776d46b24476a5d4f30eb4fc993ce6a4cdb76f.zip
- Implemented opcodes: sfHomeText, sfDrawAnimPic
- Comments on unneeded opcodes - Simplified getting/setting strings in Objects svn-id: r32361
Diffstat (limited to 'engines/made/screen.cpp')
-rw-r--r--engines/made/screen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/made/screen.cpp b/engines/made/screen.cpp
index 4774103d6a..cecd0c8968 100644
--- a/engines/made/screen.cpp
+++ b/engines/made/screen.cpp
@@ -328,7 +328,7 @@ void Screen::drawSpriteChannels(const ClipInfo &clipInfo, int16 includeStateMask
break;
case 4: // drawMenuText
- // TODO
+ // Never used in any game
break;
default:
@@ -430,7 +430,7 @@ uint16 Screen::drawSprite(uint16 flexIndex, int16 x, int16 y) {
uint16 Screen::placeSprite(uint16 channelIndex, uint16 flexIndex, int16 x, int16 y) {
- debug(2, "placeSprite(%d, %04X, %d, %d)\n", channelIndex, flexIndex, x, y); fflush(stdout);
+ debug(2, "placeSprite(%d, %04X, %d, %d)\n", channelIndex, flexIndex, x, y);
if (channelIndex < 1 || channelIndex >= 100)
return 0;