diff options
author | Chris Warren-Smith | 2011-08-07 21:33:32 +1000 |
---|---|---|
committer | Chris Warren-Smith | 2011-08-21 16:37:06 +1000 |
commit | 59739a7a0e3e4826ba7b27d5270a8d7a26b787ef (patch) | |
tree | dcf98438157963eabd0ca4499b7794548b08f5fa /graphics/fonts | |
parent | f705a9b2865a3379b3423c7cc929086eee17a4f1 (diff) | |
download | scummvm-rg350-59739a7a0e3e4826ba7b27d5270a8d7a26b787ef.tar.gz scummvm-rg350-59739a7a0e3e4826ba7b27d5270a8d7a26b787ef.tar.bz2 scummvm-rg350-59739a7a0e3e4826ba7b27d5270a8d7a26b787ef.zip |
BADA: Initial BADA port implementation
Diffstat (limited to 'graphics/fonts')
-rw-r--r-- | graphics/fonts/bdf.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/fonts/bdf.cpp b/graphics/fonts/bdf.cpp index cf2e38d3f1..58c48ed877 100644 --- a/graphics/fonts/bdf.cpp +++ b/graphics/fonts/bdf.cpp @@ -81,7 +81,8 @@ void drawCharIntern(byte *ptr, uint pitch, const bitmap_t *src, int h, int minX, void BdfFont::drawChar(Surface *dst, byte chr, const int tx, const int ty, const uint32 color) const { assert(dst != 0); - assert(_desc.bits != 0 && _desc.maxwidth <= 16); + // asserting _desc.maxwidth <= 50: let the theme designer decide what looks best + assert(_desc.bits != 0 && _desc.maxwidth <= 50); assert(dst->format.bytesPerPixel == 1 || dst->format.bytesPerPixel == 2); // If this character is not included in the font, use the default char. |