From 613790da4e4ced1dea1513d8ef35c7bb4d193b19 Mon Sep 17 00:00:00 2001 From: Karl Melscher Date: Thu, 8 Mar 2018 11:09:01 +0100 Subject: Show Load in second column --- lcarsng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lcarsng.c') diff --git a/lcarsng.c b/lcarsng.c index 798982b..15dcad5 100644 --- a/lcarsng.c +++ b/lcarsng.c @@ -1324,7 +1324,7 @@ void cLCARSNGDisplayMenu::DrawLoad(void) double SystemLoad; if (getloadavg(&SystemLoad, 1) > 0) { if (initial || SystemLoad != lastSystemLoad) { - osd->DrawText(xa01, yb04, cString::sprintf("%.1f", SystemLoad), ColorFg, ColorBg, cFont::GetFont(fontOsd), xa02 - xa01, lineHeight, taBottom | taRight | taBorder); + osd->DrawText(xa00, yb05 - lineHeight, cString::sprintf("%.1f", SystemLoad), ColorFg, ColorBg, cFont::GetFont(fontOsd), xa02 - xa00, lineHeight, taBottom | taRight | taBorder); lastSystemLoad = SystemLoad; } } -- cgit v1.2.3