diff options
author | Johannes Schickel | 2011-07-01 05:51:10 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-07-01 05:51:10 +0200 |
commit | 77bfaa1bb4780d49893afd5100c204bfb5032de1 (patch) | |
tree | b497cdb0512aa631c3733a64ae556f7ca4d38515 /graphics/sjis.h | |
parent | 933ee5b156fd8031a75b84bae5329843221208dc (diff) | |
download | scummvm-rg350-77bfaa1bb4780d49893afd5100c204bfb5032de1.tar.gz scummvm-rg350-77bfaa1bb4780d49893afd5100c204bfb5032de1.tar.bz2 scummvm-rg350-77bfaa1bb4780d49893afd5100c204bfb5032de1.zip |
GRAPHICS: More default parameter remove in SJIS code.
Diffstat (limited to 'graphics/sjis.h')
-rw-r--r-- | graphics/sjis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/sjis.h b/graphics/sjis.h index 58bcaf121f..62e68013da 100644 --- a/graphics/sjis.h +++ b/graphics/sjis.h @@ -146,7 +146,7 @@ public: virtual uint getCharWidth(uint16 ch) const; - virtual void drawChar(void *dst, uint16 ch, int pitch, int bpp, uint32 c1, uint32 c2, int maxW = -1, int maxH = -1) const; + virtual void drawChar(void *dst, uint16 ch, int pitch, int bpp, uint32 c1, uint32 c2, int maxW, int maxH) const; private: template<typename Color> void blitCharacter(const uint8 *glyph, const int w, const int h, uint8 *dst, int pitch, Color c) const; |