summaryrefslogtreecommitdiff
path: root/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'bitmap.h')
-rw-r--r--bitmap.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/bitmap.h b/bitmap.h
index 7e2999b..be4e764 100644
--- a/bitmap.h
+++ b/bitmap.h
@@ -15,9 +15,11 @@ public:
~cOSDImageBitmap();
bool Load(cBitmap &bmp, const char *Filename, int width=0, int height=0, int bpp=0);
#if VDRVERSNUM > 10716
- bool Load(cImage &bmp, const char *Filename, int width, int height);
- #endif
-private:
+ bool Load(const char *Filename, int width, int height);
+ cImage GetImage();
+private:
+ Image osdImage;
+ #endif
};
#endif