aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/draci/font.cpp')
-rw-r--r--engines/draci/font.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/engines/draci/font.cpp b/engines/draci/font.cpp
index dcd312a280..a3a261e293 100644
--- a/engines/draci/font.cpp
+++ b/engines/draci/font.cpp
@@ -179,12 +179,7 @@ void Font::drawChar(Surface *dst, uint8 chr, int tx, int ty, bool markDirty) con
}
// Paint pixel (if not transparent)
- // HACK: Temporary turned off transparency because the dragon's colour of the
- // font appears to be 255 (which should be transparent).
- // This would not be a problem if the font background was also not colour
- // 255 (apparently) so I don't know how to handle the background being
- // transparent and at the same time a non-transparent font body.
- //if (colour != _transparent)
+ if (colour != _transparent)
ptr[x] = colour;
}