diff options
| author | Thomas Reufer <thomas@reufer.ch> | 2015-02-16 21:03:01 +0100 |
|---|---|---|
| committer | Thomas Reufer <thomas@reufer.ch> | 2015-02-16 21:03:01 +0100 |
| commit | 2bccac5750acf9587bd2174840c439c2a3de2a2f (patch) | |
| tree | 42a647d84d3076e7c7cbc9ed92eef4feef37bb91 | |
| parent | 6693a1e8e7f76df81ab0fa01e235ac7a2ccfa5f8 (diff) | |
| download | vdr-plugin-rpihddevice-2bccac5750acf9587bd2174840c439c2a3de2a2f.tar.gz vdr-plugin-rpihddevice-2bccac5750acf9587bd2174840c439c2a3de2a2f.tar.bz2 | |
fixed returning of pixmap in cOvgRawOsd::Flush() for vdr-2.1.9 and before
| -rw-r--r-- | ovgosd.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1290,7 +1290,11 @@ public: pm->DrawPort().Width(), pm->DrawPort().Height(), argb)); } +#if APIVERSNUM >= 20110 DestroyPixmap(pm); +#else + delete pm; +#endif } } else |
