From: Felix Domke Date: Thu, 12 Apr 2007 19:59:36 +0000 (+0000) Subject: use hex instead of decimal X-Git-Tag: 2.6.0~2299 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/21c6d9dffd08ebe0a94e99b68a98d3d1cebccebb use hex instead of decimal --- diff --git a/lib/service/servicefs.cpp b/lib/service/servicefs.cpp index f2772192..728bb460 100644 --- a/lib/service/servicefs.cpp +++ b/lib/service/servicefs.cpp @@ -142,17 +142,17 @@ RESULT eServiceFS::getContent(std::list &list, bool sorted) if (extension == ".ts") type = eServiceFactoryDVB::id; else if (extension == ".mp3") - type = 4097; + type = 0x1001; else if (extension == ".ogg") - type = 4097; + type = 0x1001; else if (extension == ".mpg") - type = 4097; + type = 0x1001; else if (extension == ".vob") - type = 4097; + type = 0x1001; else if (extension == ".wav" || extension == ".wave") - type = 4097; + type = 0x1001; else if (extension == ".m3u" || extension == ".pls" || extension == ".e2pls") - type = 4098; + type = 4098; // ?? this id is not defined in any service handler, just in python code. if (type != -1) {