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-epgsearch/files/vdr-epgsearch-1.0.0_vdr-1.7...

33 lines
909 B

--- epgsearch/conflictcheck.h.bak 2012-03-03 15:33:15.000000000 +0100
+++ epgsearch/conflictcheck.h 2012-03-03 15:35:43.000000000 +0100
@@ -169,12 +169,12 @@
result = true;
#ifdef DO_REC_AND_PLAY_ON_PRIMARY_DEVICE
else
- result = Priority >= Setup.PrimaryLimit;
+ result = Priority >= 0;
#endif
#endif
}
else
- result = !IsPrimaryDevice() || Priority >= Setup.PrimaryLimit;
+ result = !IsPrimaryDevice() || Priority >= 0;
}
else
needsDetachReceivers = true;
@@ -259,12 +259,12 @@
result = true;
#ifdef DO_REC_AND_PLAY_ON_PRIMARY_DEVICE
else
- result = Priority >= Setup.PrimaryLimit;
+ result = Priority >= 0;
#endif
#endif
}
else
- result = !IsPrimaryDevice() || Priority >= Setup.PrimaryLimit;
+ result = !IsPrimaryDevice() || Priority >= 0;
}
else
needsDetachReceivers = true;