diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | softhddevice.cpp | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,8 @@ +User johns +Date: + + Fix for compile with vdr 2.1.10, for older vdr versions. + User jinx Date: Mon Feb 16 09:58:06 CET 2015 diff --git a/softhddevice.cpp b/softhddevice.cpp index ba0cb2f..310855b 100644 --- a/softhddevice.cpp +++ b/softhddevice.cpp @@ -513,7 +513,11 @@ void cSoftOsd::Flush(void) #endif OsdDrawARGB(x, y, w, h, pm->Data()); +#if APIVERSNUM >= 20110 DestroyPixmap(pm); +#else + delete pm; +#endif } Dirty = 0; } |