Fix for compile with vdr 2.1.10, for older vdr versions.

This commit is contained in:
Johns 2015-02-16 15:18:59 +01:00
parent 73ce4ba803
commit 93ea660a38
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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;
}