Improved duration round.

This commit is contained in:
Christian P. MOMON 2018-01-22 11:16:10 +01:00
parent cc14f80de3
commit cbbeb2678f

View File

@ -158,7 +158,7 @@ public class Review
{ {
long result; long result;
result = getDuration() / 60; result = (long) Math.ceil(getDuration() / 60.0);
// //
return result; return result;