From a0864c43825352a8d222cf5e380085bba849cd8a Mon Sep 17 00:00:00 2001 From: ecrips Date: Sat, 9 May 2020 17:19:46 +0100 Subject: [PATCH] u8g2: Fix name of updateDisplay export (#3093) Correct typo in Lua export from updateDispla() to updateDisplay() --- app/modules/u8g2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/u8g2.c b/app/modules/u8g2.c index bb859900..0f564984 100644 --- a/app/modules/u8g2.c +++ b/app/modules/u8g2.c @@ -607,7 +607,7 @@ LROT_BEGIN(lu8g2_display, NULL, LROT_MASK_INDEX) LROT_FUNCENTRY( setFontRefHeightExtendedText, lu8g2_setFontRefHeightExtendedText ) LROT_FUNCENTRY( setFontRefHeightText, lu8g2_setFontRefHeightText ) LROT_FUNCENTRY( setPowerSave, lu8g2_setPowerSave ) - LROT_FUNCENTRY( updateDispla, lu8g2_updateDisplay ) + LROT_FUNCENTRY( updateDisplay, lu8g2_updateDisplay ) LROT_FUNCENTRY( updateDisplayArea, lu8g2_updateDisplayArea ) LROT_END(lu8g2_display, NULL, LROT_MASK_INDEX)