summaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2007-06-25 12:44:11 +0200
committerAndreas Mair <amair.sob@googlemail.com>2007-06-25 12:44:11 +0200
commitfc61e314442d22bb7886dba77380497b776fcb62 (patch)
treeb6e891bb760438f2209d5f24ab489d8d01579026 /common.h
parentae9c6ccad6ba1ab419fe73d9e75f545cbbb62c96 (diff)
downloadvdr-plugin-skinenigmang-0.0.5rc3.tar.gz
vdr-plugin-skinenigmang-0.0.5rc3.tar.bz2
2007-06-25: Version 0.0.5rc3v0.0.5rc3
- Updated Finnish translation (Submitted by Rolf Ahrenberg). - Added quickepgsearch, sport and music plugins in main menu logos (Submitted by zulu @vdr-portal.de). - Reworked debug() and error(). - Use required width of date for calculation of logo area with. - Don't let vector for text effects grow when moving through lists in menus. - Added internal translation of long weeksdays (Requested and translated by Pat @vdr-portal.de). - Support TrueTypeFonts again with VDR >=v1.5.4 (TTF width setup disabled). - Read OSD size from VDR's cOsd as suggested in VDR and Avards plugin. - Minor bugfixes and enhancements.
Diffstat (limited to 'common.h')
-rw-r--r--common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common.h b/common.h
index 5e574c3..edd3afd 100644
--- a/common.h
+++ b/common.h
@@ -13,16 +13,16 @@
#include <vdr/config.h>
-// unset HAVE_FREETYPE if VDR version >=1.5.3
+// unset HAVE_FREETYPE if VDR 1.5.3
#ifdef HAVE_FREETYPE
-# if VDRVERSNUM > 10502
+# if VDRVERSNUM == 10503
# undef HAVE_FREETYPE
# endif
#endif
#ifdef DEBUG
-#define debug(x...) printf("EnigmaNG: " x);
-#define error(x...) printf("EnigmaNG: " x);
+#define debug(x...) { printf("EnigmaNG: " x); printf("\n"); }
+#define error(x...) { fprintf(stderr, "EnigmaNG: " x); fprintf(stderr, "\n"); }
#else
#define debug(x...) ;
#define error(x...) esyslog("EnigmaNG: " x);