blob: 3a8babbc16fb0b94837050efa8a09f47cca847b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
--- 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;
|