summaryrefslogtreecommitdiff
path: root/vdrrip.c
diff options
context:
space:
mode:
Diffstat (limited to 'vdrrip.c')
-rwxr-xr-xvdrrip.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/vdrrip.c b/vdrrip.c
index 69fbfee..d0964ff 100755
--- a/vdrrip.c
+++ b/vdrrip.c
@@ -132,13 +132,21 @@ cOsdObject *cPluginVdrrip::MainMenuAction(void)
if (access(MPlayer, X_OK) == -1) {
char *s = NULL;
asprintf(&s, "%s doesn't exist or isn't a executable !", MPlayer);
+#if VDRVERSNUM >= 10307
+ Skins.Message(mtError, s);
+#else
Interface->Error(s);
+#endif
FREE(s);
return NULL;
} else if (access(MEncoder, X_OK) == -1) {
char *s = NULL;
asprintf(&s, "%s doesn't exist or isn't a executable !", MEncoder);
+#if VDRVERSNUM >= 10307
+ Skins.Message(mtError, s);
+#else
Interface->Error(s);
+#endif
FREE(s);
return NULL;
} else return new cMenuVdrrip();