You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-plugins/vdr-coverviewer/files/vdr-coverviewer-0.0.2-vdr-1...

49 lines
770 B

--- control-image.c~ 2007-05-18 14:08:11.000000000 +0200
+++ control-image.c 2007-06-09 16:40:18.000000000 +0200
@@ -251,7 +251,11 @@
void cImageControl::FadeIn(void)
{
+#if VDRVERSNUM >= 10500
+ SetNeedsFastResponse(true);
+#else
needsFastResponse = true;
+#endif
int i;
int alpha = 0;
@@ -279,13 +283,21 @@
fd--;
}
+#if VDRVERSNUM >= 10500
+ SetNeedsFastResponse(false);
+#else
needsFastResponse = false;
+#endif
}
void cImageControl::FadeOut(void)
{
+#if VDRVERSNUM >= 10500
+ SetNeedsFastResponse(true);
+#else
needsFastResponse = true;
+#endif
int i;
int alpha = 255;
@@ -312,7 +324,11 @@
fd--;
}
+#if VDRVERSNUM >= 10500
+ SetNeedsFastResponse(false);
+#else
needsFastResponse = false;
+#endif
}