aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2011-02-19 15:22:06 +0100
committerghost <andreas.monzner@multimedia-labs.de>2011-02-19 15:22:06 +0100
commit5542743a96cff0772577e445a93384d07c291b91 (patch)
tree6105196f3f9857e5188b78dc4a275dc81ee3f042 /lib/python/Plugins/Extensions
parent42f5a704c8bd14f9bac30b61a76effaededc74e8 (diff)
downloadenigma2-5542743a96cff0772577e445a93384d07c291b91.tar.gz
enigma2-5542743a96cff0772577e445a93384d07c291b91.zip
Revert "servicedvd.cpp: fix merge error (caused by the vob subtitle bug merge)"
This reverts commit 42f5a704c8bd14f9bac30b61a76effaededc74e8.
Diffstat (limited to 'lib/python/Plugins/Extensions')
-rw-r--r--lib/python/Plugins/Extensions/DVDPlayer/src/servicedvd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDPlayer/src/servicedvd.cpp b/lib/python/Plugins/Extensions/DVDPlayer/src/servicedvd.cpp
index a3749ff7..ccacf3c0 100644
--- a/lib/python/Plugins/Extensions/DVDPlayer/src/servicedvd.cpp
+++ b/lib/python/Plugins/Extensions/DVDPlayer/src/servicedvd.cpp
@@ -901,7 +901,7 @@ PyObject *eServiceDVD::getCutList()
ePyObject list = PyList_New(1);
ePyObject tuple = PyTuple_New(2);
PyTuple_SetItem(tuple, 0, PyLong_FromLongLong(m_cue_pts));
- PyTuple_SetItem(tuple, 1, PyInt_FromLong(5));
+ PyTuple_SetItem(tuple, 1, PyInt_FromLong(3));
PyList_SetItem(list, 0, tuple);
return list;
}