summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lcarsng.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}