Clarify comment

This commit is contained in:
drdev
2014-09-21 05:23:33 +00:00
parent d98a617592
commit ef25938d8e

View File

@@ -39,7 +39,9 @@ public class Utils {
} }
public static float scale(float value) { public static float scale(float value) {
return Math.round(value * HEIGHT_RATIO); //use height ratio to prioritize making fonts look good //use height ratio to prioritize making fonts look good
//fonts can always auto-scale down if container not wide enough
return Math.round(value * HEIGHT_RATIO);
} }
public static long secondsToTimeSpan(float seconds) { public static long secondsToTimeSpan(float seconds) {