diff options
author | montellese <montellese@xbmc.org> | 2014-11-29 19:47:45 +0100 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2014-11-29 19:51:08 +0100 |
commit | 1e9620cff4dd83f6a4f487fcf3c519b01efde8e4 (patch) | |
tree | 97340b6075b97e8fedcad7a8c9be7e697b0c7816 | |
parent | 03d594717b30f6c0708666a9e4a4c977b19ac773 (diff) |
platinum: fix filter mask values of xbmc:votes and xbmc:artwork
-rw-r--r-- | lib/libUPnP/Platinum/Source/Devices/MediaServer/PltDidl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltDidl.h b/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltDidl.h index 0f7c892422..9e87599955 100644 --- a/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltDidl.h +++ b/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltDidl.h @@ -97,8 +97,8 @@ #define PLT_FILTER_MASK_XBMC_DATEADDED NPT_UINT64_C(0x0000100000000000) #define PLT_FILTER_MASK_XBMC_RATING NPT_UINT64_C(0x0000200000000000) -#define PLT_FILTER_MASK_XBMC_VOTES NPT_UINT64_C(0x0000300000000000) -#define PLT_FILTER_MASK_XBMC_ARTWORK NPT_UINT64_C(0x0000400000000000) +#define PLT_FILTER_MASK_XBMC_VOTES NPT_UINT64_C(0x0000400000000000) +#define PLT_FILTER_MASK_XBMC_ARTWORK NPT_UINT64_C(0x0000800000000000) #define PLT_FILTER_FIELD_TITLE "dc:title" #define PLT_FILTER_FIELD_CREATOR "dc:creator" |