summaryrefslogtreecommitdiff
path: root/bitmap.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-01-27 10:53:07 +0000
committerlordjaxom <lordjaxom>2005-01-27 10:53:07 +0000
commitf36b8016c77511ff6740d05e8e6f561fbe24765c (patch)
tree23e27b958daa877d021691b74523ae7de710bcf2 /bitmap.c
parentf1fccd526b62c34d7e488cf3b7662e5e4343647d (diff)
downloadvdr-plugin-text2skin-f36b8016c77511ff6740d05e8e6f561fbe24765c.tar.gz
vdr-plugin-text2skin-f36b8016c77511ff6740d05e8e6f561fbe24765c.tar.bz2
- adapted for gcc 3
Diffstat (limited to 'bitmap.c')
-rw-r--r--bitmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitmap.c b/bitmap.c
index 0462d35..a56d909 100644
--- a/bitmap.c
+++ b/bitmap.c
@@ -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;