From 282bfa2abb4c7fce68c538d43083f405d7b7ec51 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lothar=20Wa=C3=9Fmann?= Date: Wed, 3 Feb 2016 07:05:48 +0100 Subject: [PATCH] lcd: fix typo CONFIG_BMP_24BMP -> CONFIG_BMP_24BPP --- common/lcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lcd.c b/common/lcd.c index 23c502106c..d62e292412 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -730,7 +730,7 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y) } break; #endif /* CONFIG_BMP_16BPP */ -#if defined(CONFIG_BMP_24BMP) +#if defined(CONFIG_BMP_24BPP) case 24: for (i = 0; i < height; ++i) { for (j = 0; j < width; j++) { -- 2.39.2