aboutsummaryrefslogtreecommitdiff
path: root/lib/service/servicedvb.cpp
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-01-27 10:49:53 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-01-27 10:49:53 +0100
commit34f11d5064546dd47b7cfde226f4267a7f83741d (patch)
tree1051b343b5890b994ad52d9ad192741856ac5d5b /lib/service/servicedvb.cpp
parentc75e82f378fef9e9a1c500ffb1696ba02d8fbd9a (diff)
parentcecd9068fcba09234232399748d4a55ed7574e4b (diff)
downloadenigma2-34f11d5064546dd47b7cfde226f4267a7f83741d.tar.gz
enigma2-34f11d5064546dd47b7cfde226f4267a7f83741d.zip
Merge remote branch 'origin/bug_288_remove_no_resume_on_minor_start_cutpoints'
Diffstat (limited to 'lib/service/servicedvb.cpp')
-rw-r--r--lib/service/servicedvb.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp
index 615329c9..1a3cb0e0 100644
--- a/lib/service/servicedvb.cpp
+++ b/lib/service/servicedvb.cpp
@@ -1128,11 +1128,7 @@ RESULT eDVBServicePlay::stop()
if (length)
{
- int perc = play_position * 100LL / length;
-
- /* only store last play position when between 1% and 99% */
- if ((1 < perc) && (perc < 99))
- m_cue_entries.insert(cueEntry(play_position, 3)); /* last play position */
+ m_cue_entries.insert(cueEntry(play_position, 3)); /* last play position */
}
m_cuesheet_changed = 1;
}