From 45a764400485fb6fb9b0d3566e24feac446e616c Mon Sep 17 00:00:00 2001 From: Damien Bargiacchi Date: Mon, 5 Dec 2016 18:02:18 -0800 Subject: Centre clock text on visible characters instead of : character Bug: 33340845 Change-Id: I235ad7c6aafc62daa55242f81df2d076f27c56df --- cmds/bootanimation/BootAnimation.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmds/bootanimation/BootAnimation.cpp') diff --git a/cmds/bootanimation/BootAnimation.cpp b/cmds/bootanimation/BootAnimation.cpp index a893ec8b862b..10fabcfb735f 100644 --- a/cmds/bootanimation/BootAnimation.cpp +++ b/cmds/bootanimation/BootAnimation.cpp @@ -610,9 +610,10 @@ void BootAnimation::drawClock(const Font& font, const int xPos, const int yPos) return; } + char* out = timeBuff[0] == ' ' ? &timeBuff[1] : &timeBuff[0]; int x = xPos; int y = yPos; - drawText(timeBuff, font, false, &x, &y); + drawText(out, font, false, &x, &y); } bool BootAnimation::parseAnimationDesc(Animation& animation) -- cgit v1.2.3