1
0
mirror of https://github.com/rofafor/vdr-plugin-femon.git synced 2023-10-10 13:36:53 +02:00

Fixed freeing memory.

This commit is contained in:
Rolf Ahrenberg 2014-01-06 22:36:54 +02:00
parent eedab47c35
commit 0d06635520

View File

@ -135,7 +135,7 @@ bool cFemonSymbolCache::Populate(void)
Flush(); Flush();
// pushing order must follow the enumeration - keep original proportions except for frontend status ones // pushing order must follow the enumeration - keep original proportions except for frontend status ones
cacheM.Append(&bmOnePixel); // SYMBOL_ONEPIXEL cacheM.Append(bmOnePixel.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_ONEPIXEL
cacheM.Append(bmStereo.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_STEREO cacheM.Append(bmStereo.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_STEREO
cacheM.Append(bmMonoLeft.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_MONO_LEFT cacheM.Append(bmMonoLeft.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_MONO_LEFT
cacheM.Append(bmMonoRight.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_MONO_RIGHT cacheM.Append(bmMonoRight.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_MONO_RIGHT