diff options
author | lordjaxom <lordjaxom> | 2005-01-27 10:53:07 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-27 10:53:07 +0000 |
commit | f36b8016c77511ff6740d05e8e6f561fbe24765c (patch) | |
tree | 23e27b958daa877d021691b74523ae7de710bcf2 /bitmap.c | |
parent | f1fccd526b62c34d7e488cf3b7662e5e4343647d (diff) | |
download | vdr-plugin-text2skin-f36b8016c77511ff6740d05e8e6f561fbe24765c.tar.gz vdr-plugin-text2skin-f36b8016c77511ff6740d05e8e6f561fbe24765c.tar.bz2 |
- adapted for gcc 3
Diffstat (limited to 'bitmap.c')
-rw-r--r-- | bitmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* - * $Id: bitmap.c,v 1.5 2005/01/26 20:44:18 lordjaxom Exp $ + * $Id: bitmap.c,v 1.6 2005/01/27 10:53:07 lordjaxom Exp $ */ #include "bitmap.h" @@ -70,8 +70,8 @@ cText2SkinBitmap *cText2SkinBitmap::Load(const std::string &Filename, int Alpha, return res; } -bool cText2SkinBitmap::Available(const std::string &Filename, int Alpha = 0, int height = 0, - int width = 0, int colors = 0) +bool cText2SkinBitmap::Available(const std::string &Filename, int Alpha, int height, int width, + int colors) { cText2SkinBitmap *bmp = Load(Filename, Alpha, height, width, colors, true); return bmp != NULL; |