From 9e24551bb8b0f7c24efbff3c87f697399e68e63e Mon Sep 17 00:00:00 2001 From: "Austin St. Aubin" Date: Fri, 1 Jun 2012 12:50:35 -0500 Subject: [PATCH] Formated Compile Output: "Binary sketch size: 1942 bytes (of a 63488 byte maximum) - 3% used" --- app/src/processing/app/Sketch.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 5f8a09b5d5d..a61a9a596b5 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -1646,8 +1646,8 @@ protected void size(String buildPath, String suggestedClassName) size = sizer.computeSize(); System.out.println( I18n.format( - _("Binary sketch size: {0} bytes (of a {1} byte maximum)"), - size, maxsize + _("Binary sketch size: {0} bytes (of a {1} byte maximum) - {3}% used"), + size, maxsize, (size*100)/maxsize ) ); } catch (RunnerException e) {