diff options
author | Zoolooc <lucianm@users.sourceforge.net> | 2011-03-07 00:51:27 +0100 |
---|---|---|
committer | Zoolooc <lucianm@users.sourceforge.net> | 2011-03-07 00:51:27 +0100 |
commit | 686e1855f3d31bdf94b3af537c5b8061eec438e7 (patch) | |
tree | fe9256ac1489f4b6a8bd350f759c72dd9f136995 /glcdgraphics/bitmap.h | |
parent | bc1a54cc721e10dfb73fec89e367354b46a0eeb1 (diff) | |
download | graphlcd-base-686e1855f3d31bdf94b3af537c5b8061eec438e7.tar.gz graphlcd-base-686e1855f3d31bdf94b3af537c5b8061eec438e7.tar.bz2 |
UTF8 support fixes
Diffstat (limited to 'glcdgraphics/bitmap.h')
-rw-r--r-- | glcdgraphics/bitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glcdgraphics/bitmap.h b/glcdgraphics/bitmap.h index b6446a0..9e5c7e6 100644 --- a/glcdgraphics/bitmap.h +++ b/glcdgraphics/bitmap.h @@ -60,7 +60,7 @@ public: void DrawBitmap(int x, int y, const cBitmap & bitmap, eColor color); int DrawText(int x, int y, int xmax, const std::string & text, const cFont * font, eColor color = clrBlack, bool proportional = true, int skipPixels = 0); - int DrawCharacter(int x, int y, int xmax, char c, const cFont * font, + int DrawCharacter(int x, int y, int xmax, int c, const cFont * font, eColor color = clrBlack, int skipPixels = 0); cBitmap * SubBitmap(int x1, int y1, int x2, int y2) const; |