store position when 1..99% and not 5..95%
[enigma2.git] / lib / service / servicedvb.cpp
index cd4d3394cc90efe0f987783b9ec7b842ebc17f68..0da33635085d71d560fb8edf7fd27db8ef9664a3 100644 (file)
@@ -1220,8 +1220,8 @@ RESULT eDVBServicePlay::stop()
                        {
                                int perc = play_position * 100LL / length;
                        
-                                       /* only store last play position when between 5% and 95% */
-                               if ((5 < perc) && (perc < 95))
+                                       /* 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_cuesheet_changed = 1;