mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-05-07 01:55:40 +02:00
- basic support for Enigma2 (Dreambox, Vu+,...) channel lists
- dynamic number of favorite lists (still limited to 64 due to bitmask)
This commit is contained in:
@@ -616,8 +616,8 @@ namespace ChanSort.Loader.Samsung.Zip
|
||||
// update favorites
|
||||
for (int i=0, mask=1; i<5; i++, mask <<= 1)
|
||||
{
|
||||
int oldPos = channel.OldFavIndex[i];
|
||||
int newPos = ((int)channel.Favorites & mask) != 0 ? channel.FavIndex[i] : -1;
|
||||
int oldPos = channel.GetOldPosition(1+i);
|
||||
int newPos = ((int)channel.Favorites & mask) != 0 ? channel.GetPosition(1+i) : -1;
|
||||
|
||||
if (newPos >= 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user