From 0fc34a30c789839dd829d543724c44bb1be9138a Mon Sep 17 00:00:00 2001 From: mangavalk Date: Mon, 7 Nov 2016 10:29:15 +0000 Subject: [PATCH] Revert "Update lcd_lib.c, maybe fix rasplex?" This reverts commit c2f24e5ef699899408468125be55b007fd371e76 --- server/drivers/lcd_lib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/drivers/lcd_lib.c b/server/drivers/lcd_lib.c index 2e990fd..7a11605 100644 --- a/server/drivers/lcd_lib.c +++ b/server/drivers/lcd_lib.c @@ -34,9 +34,9 @@ lib_hbar_static (Driver *drvthis, int x, int y, int len, int promille, int optio if ( pixels >= cellwidth ) { /* write a "full" block to the screen... */ -// #if defined(SEAMLESS_HBARS) -// drvthis->chr (drvthis, x+pos, y, cellwidth + cc_offset); -// #else +#if defined(SEAMLESS_HBARS) + drvthis->chr (drvthis, x+pos, y, cellwidth + cc_offset); +#else drvthis->icon (drvthis, x+pos, y, ICON_BLOCK_FILLED); #endif }