mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-14 03:39:57 +01:00
Bugfix display STRING time
This commit is contained in:
@@ -39,7 +39,7 @@ string GstToolkit::time_to_string(guint64 t, time_string_mode m)
|
||||
count++;
|
||||
}
|
||||
if (count < 2 )
|
||||
oss << '.'<< setw(1) << setfill('0') << (ms % 1000) / 10;
|
||||
oss << '.'<< setw(2) << setfill('0') << (ms % 1000) / 10;
|
||||
}
|
||||
else {
|
||||
// TIME_STRING_FIXED : fixed length string (11 chars) HH:mm:ss.ii"
|
||||
|
||||
Reference in New Issue
Block a user