aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-04-29 18:29:07 +0200
committerghost <andreas.monzner@multimedia-labs.de>2010-05-05 01:16:53 +0200
commit56f2ffeb0301567710eb8f08a92a73ce67a40ef5 (patch)
treee3ba5a775cd9525d0a21b59b650428780702eb1d /lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py
parent4b90fd4ce866b21a60ca5962b23c550e54d4f6d8 (diff)
downloadenigma2-56f2ffeb0301567710eb8f08a92a73ce67a40ef5.tar.gz
enigma2-56f2ffeb0301567710eb8f08a92a73ce67a40ef5.zip
dm800se support
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py')
-rw-r--r--lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py
index e3b902f0..59c50476 100644
--- a/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py
+++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoHardware.py
@@ -239,9 +239,9 @@ class VideoHardware:
portlist = self.getPortList()
for port in portlist:
descr = port
- if descr == 'DVI' and hw_type == 'dm500hd':
+ if descr == 'DVI' and hw_type in ('dm500hd', 'dm800se'):
descr = 'HDMI'
- elif descr == 'DVI-PC' and hw_type == 'dm500hd':
+ elif descr == 'DVI-PC' and hw_type in ('dm500hd', 'dm800se'):
descr = 'HDMI-PC'
lst.append((port, descr))